Let be a sequence for which , , and for each positive integer . What is ?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Computing a few terms shows the sequence cycles with period 6, so a_2006 equals a_2 since 2006 leaves remainder 2 on division by 6.
Solution
Generate terms until a repeat appears:
Since and , and each term is determined by the two before it, the sequence repeats with period : for all .
Now , so .
The answer is .
Why this works
A two-term recurrence is periodic as soon as a consecutive pair of terms reappears, because everything after is forced. For an index like the intent is clearly "find the cycle," so compute terms until the starting pair returns, then reduce the index mod the period. Structurally, gives , hence .
The trap
Stopping at a_3 or a_4 and guessing, or computing 2006 mod 6 incorrectly (it is 2, not 0 or 4).
Common mistakes
- Stopping at a_3 or a_4 and guessing, or computing 2006 mod 6 incorrectly (it is 2, not 0 or 4).
- Taking remainder to mean rather than when the index happens to be a multiple of the period.
Techniques
Compute small cases, spot the pattern, generalize