Two non-decreasing sequences of nonnegative integers have different first terms. Each sequence has the property that each term, beginning with the third, is the sum of the previous two terms, and the seventh term of each sequence is . What is the smallest possible value of ?
- A)
- B)
- C)
- D)
- E)
Answer
C
Key insight
Seventh term is 5a+8b; two starts with equal N differ by (+8,-5), so b >= a+13 and (0,13), (8,8) give 104.
Solution
Let the first two terms be and . The sequence is
so . Non-decreasing requires (after that, every term is a sum of nonnegative terms, so the condition holds automatically).
Suppose and with both give : , so . Since , is a multiple of and the same multiple of . The smallest jump is , .
The second pair must still be non-decreasing: , i.e. . To minimize take and , giving , with the partner pair .
Check: and . Both are non-decreasing with different first terms. Any valid configuration has , so .
The answer is .
Why this works
A Fibonacci-type sequence is linear in its two starting values, so "same seventh term" is a linear Diophantine equation in . Coprime coefficients force the two solutions to differ by a fixed step, and the monotonicity constraint on the shifted pair turns into a lower bound on .
Alternative approach
Test the choices from the bottom. with : only, since and must be a nonnegative multiple of . : gives (invalid) and ; one valid pair. : gives invalid, and ; two valid pairs, so works.
The trap
Forgetting the non-decreasing condition a <= b, which would allow smaller N such as 5*1 + 8*10 = 5*9 + 8*5 = 85.
Common mistakes
- Forgetting the non-decreasing condition a <= b, which would allow smaller N such as 51 + 810 = 59 + 85 = 85.
- Miscounting the recurrence and using (the sixth term) or (the eighth).
Techniques
Apply an identity: SFFT, sum of squares, difference of cubes, Vieta · Bound the quantity above/below or estimate to pin it down