AMC 10 · 2004 · #12

Grade 6 arithmetic
recursive-sequencepattern-recognitionmodular-arithmetic pattern-recognitionsystematic-enumeration ↑ Prerequisites: recursive-sequence
📏 Medium solution 💡 3 insights
Problem
A sequence starts 2001, 2002, 2003, and from the fourth term on each term is the sum of the two terms before the one just ahead of it, minus that just-ahead term. Find the 2004th term.

Pick an answer.

(A)
-2004
(B)
-2
(C)
0
(D)
4003
(E)
6007
How to solve
Strategy Look for a Pattern

Reaching term 2004 one step at a time is hopeless, so the move is to compute enough early terms to spot a pattern (Tool #5). The raw list 2001, 2002, 2003, 2000, 2005, 1998, 2007, 1996, … looks jumpy, but splitting it into odd-numbered and even-numbered positions (Tool #15) makes each half a clean, steady sequence. Since 2004 is even, only the even-position half matters. Finally, the answer choices are far apart, so a correct value pins one choice and rules out the rest (Tool #3).

1STEP 1

Generate the first several terms

Generating terms gives 2000, 2005, 1998, 2007, 1996 — a zig-zag.

a₄=2000, a₅=2005, a₆=1998, a₇=2007, a₈=1996
2STEP 2

Split odd and even positions

Split by position: odds climb by 2, evens drop by 2.

even positions: 2002, 2000, 1998, 1996, … (down by 2)
3STEP 3

Extend the even pattern to position 2004

Position 2004 is the 1002nd even term, which lands on 0.

a₂₀₀₄ = E₁₀₀₂ = 2002 - 2 · 1001 = 0
4STEP 4

Match the value to a choice

No other choice fits the even-position rule, so the answer is 0, choice (C).

a₂₀₀₄ = 0 → (C)
Answer
0
The even terms 2002, 2000, 1998, … march steadily downward by 2, and from the first even term to the 1002nd there are 1001 steps of -2, a total drop of 2002 — landing exactly on 2002 - 2002 = 0. The value sits right where the pattern points, and 0 is one of the offered choices, so (C) is consistent.
💡Key takeaway

When a sequence zig-zags, sort the terms by even and odd position — each half often becomes a steady step-by-a-fixed-amount pattern you can jump straight to.

  • Generate the first several terms
  • Split odd and even positions
  • Extend the even pattern to position 2004
  • Match the value to a choice