SEQUENCES & SERIES
Arithmetic and geometric sequences, series formulas, telescoping sums, and recursive patterns at AMC10 level.
Overview
A sequence is an ordered list of numbers following a rule; a series is the sum of the terms of a sequence. On the AMC10, sequence and series problems appear at almost every difficulty level — from "find the 10th term of 3, 7, 11, …" to "find a parameter that forces a recursive sequence into a given pattern." Learning to recognize which type of sequence you're looking at is the first and most important step.
The two workhorses are arithmetic sequences (each term is obtained by adding a fixed number , the common difference) and geometric sequences (each term is obtained by multiplying by a fixed number , the common ratio). Most AMC problems either ask for a specific term, a partial sum, an infinite sum, or a hidden parameter — all of which follow from two or three formulas. Speed matters, so internalize those formulas deeply enough to apply them without hesitation.
Beyond the standard types, the AMC10 loves telescoping sums and recursive sequences. Telescoping exploits cancellation when each term can be written as a difference . Recursive sequences reward pattern-finding: compute the first several terms and look for periodicity or a closed form before attempting algebra.
Key facts
- Arithmetic sequence — th term: — use to find any term directly.
- Arithmetic series — partial sum: — sum the first terms without adding them one by one.
- Geometric sequence — th term: — multiply the first term by the ratio raised to the power.
- Geometric series — partial sum: for — use when is a simple fraction or integer.
- Infinite geometric series: , valid only when — the series converges to a finite value.
- Telescoping: if can be factored out of each term, — the middle terms cancel.
- Arithmetic mean: the middle term of three consecutive terms of an arithmetic sequence equals their average. For terms , , in arithmetic progression: , i.e., .
- Geometric mean: for three terms , , in geometric progression: .
- Recursive to closed form: compute several terms, look for a pattern, then verify with the recurrence. Common patterns include linear growth (), exponential growth (), and periodicity.
Worked example 1
The first term of an arithmetic sequence is and the common difference is . What is the sum of the first terms?
We use the partial-sum formula. With , , and :
Why does this formula work? Write the sum forwards and backwards, then add:
Each pair adds to , and there are pairs, so , giving . The general formula is just this "pair-up" idea made algebraic.
Worked example 2
The fractions are added together. What is their sum?
Each fraction telescopes via partial fractions:
So the sum becomes:
Everything between the first and the last cancels in pairs — that is the "telescope" collapsing. The trick is recognizing the partial-fraction split; once you see it, the sum writes itself.
Common traps
- Off-by-one in the th term. The th term is , not . The first term is , so there are only steps of size .
- Forgetting for the infinite series. The formula only applies when the series converges. If , the sum is infinite (or undefined).
- Confusing ratio and difference. Checking whether a sequence is arithmetic or geometric is step one. If the differences of consecutive terms are equal, it's arithmetic; if the ratios are equal, it's geometric.
- Misidentifying the first term in a partial sum. When a problem gives you the 3rd and 7th terms, convert to first before plugging into the sum formula.
- Stopping the telescope too early. The telescoping sum collapses to , not . Use at the last step.