Series is not guessing — it is hypothesis testing. Propose a rule (difference, ratio, power, prime, interleave), test it on the next gap, and the one that survives all gaps is the answer. Speed comes from checking in the right order.
If you cannot instantly list squares to 20², cubes to 10³, and primes to 50, you will burn time before you even start. Memorize these first.
dAdd or subtract a fixed d.
+2 → 10−3 → −2 (AP can go negative — don't reject negative answers)
+1/2 → 5/2Odd-one-out cue: AP gaps are identical. If one gap is off, that term is the odd one. E.g., 3,5,7,9,12 → 12 breaks +2.
r×2 → 48÷3 → 1×5 → 625Cue: GP explodes fast. If numbers double or halve each step, test ratio first before differences.
n² and Cubes n³| n | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|---|
| n² | 1 | 4 | 9 | 16 | 25 | 36 | 49 | 64 | 81 | 100 |
| n³ | 1 | 8 | 27 | 64 | 125 | 216 | 343 | 512 | 729 | 1000 |
Variations are more common than pure powers:
n² −1 → 0,3,8,15,24,35… (one less than square)n² +1 → 2,5,10,17,26…n³ +1 → 2,9,28,65,126…n² + n → 2,6,12,20,30… (which is also the double-difference series — see §2)
If you see 27, 64, 125, 216 — cubes. 17, 26, 37 — n²+1. Spot the base, then the
adjustment.
Primes in order:
2,3,5,7,11,13,17,19,23,29,31,37,41,43,47…
1,2,6,24,120,720… → 1!,2!,3!… Appears as 1,2,6,24… or mixed with
+1: 2,3,7,25…
1,2,4,8,16,32… — close to GP but base is exactly 2.If first differences are irregular, take differences of differences.
n²+n (2,6,12,20,30…). In general an²+bn+c.
n³
family). E.g., cubes 1,8,27,64… have Diff1 +7,+19,+37… Diff2 +12,+18… Diff3 +6 constant.
Speed test: compute Diff1 in your head left to right; if it is arithmetic (adds 2 each time), you have the answer without writing Diff2.
prev × a + b (Most Common Advanced)
Each term = prev × x + y. x and y may be constant, or
x itself may increase.
×2+1 → 31×2+1=63.×2+1, ×2+1… actually constant
too; try 4,6,13,27… → pattern ×2−2, ×2+1, ×2+1 — verify by solving: if 4→6, guess
×1+2? Test forward.T₂ = T₁·x + y and
T₃ = T₂·x + y → two equations, solve for x,y. Example: 5,11,23 → 11=5x+y,
23=11x+y → subtract → 12=6x → x=2 → y=1. So rule ×2+1 confirmed. Apply to next:
23×2+1=47.
Multiplier itself forms a sequence: ×1, ×2, ×3, ×4…
Example: 2,2,4,12,48… → ×1, ×2, ×3, ×4 → next ×5 → 240.
Variant with addition: ×1+1, ×2+2, ×3+3… — check both × and + ladders.
Each term = sum of two preceding: 0,1,1,2,3,5,8,13…
Cue: numbers go up-down-up-down or small-large-small-large → split. For three interleaved series, check positions 1,4,7… / 2,5,8… / 3,6,9…
n² + prime. Test
squares first, then see residual pattern.
| Step | What to check | How | Likely pattern |
|---|---|---|---|
| 1 | Rapid growth? | Ratio >2, jumps like ×3,×5 or 1→8→27 | GP, power, ×a+b with large × |
| 2 | Slow & steady? | Compute Diff1 | AP or double diff |
| 3 | Irregular up/down? | Plot mentally, split odds/evens | Interleaved / alternating signs |
| 4 | Special numbers visible? | 27,64,125,49,17,19 | Cubes, squares, primes |
| 5 | Digit behavior? | Sum/product of digits vs value | Digit logic |
| Pattern | Signature | Odd-one-out trap |
|---|---|---|
| AP | Equal gaps | One gap off by 1 |
| GP | Equal ratios | One ratio breaks (48 vs 64) |
| Power | 27,64,125 present | n² vs n²+1 confusion |
| Double diff | Diff2 constant | Miscounting Diff1 |
| n×a+b | Moderate exponential | Assuming x,y constant when y changes |
| Interleaved | Up-down or small-large oscillation | Forgetting to split, forcing single rule |
2,4,6,8,? — next?
3,6,12,24,? — next?
2,6,12,20,30,? — next?
3,7,15,31,? (×2+1) — next?
2,2,4,12,48,? (×1,×2,×3,×4) — next?
0,1,1,2,3,5,8,? (Fibonacci) — next?
10,2,12,4,14,6 — interleaved, next?
Fast growth 2,18,162 → likely?
1,4,9,16,25,? — next?
2,3,5,7,11,? — next?
2,4,8,16,32,48 — odd one out?
1,2,6,24,120,? — next?
AP ⇒ +d constant ; GP ⇒ ×r constant ; Powers ⇒ n²/n³ (and n²±1, n³±1) ; Primes ⇒ 2,3,5,7,11… ; Factorial ⇒ n! ; 2ⁿ ⇒ 1,2,4,8…
Double diff ⇒ Diff1 irregular → Diff2 constant (eg 2,6,12,20,30→Diff2 +2→42) ; Triple → cubic
n×a+b ⇒ prev×x+y — solve via two equations to find x,y (eg 5,11,23→×2+1→47)
Increasing × ⇒ ×1,×2,×3 (eg 2,2,4,12,48→240)
Fibonacci ⇒ sum of 2 prev (0,1,1,2,3,5,8→13) ; Tribonacci ⇒ 3 prev
Interleaved ⇒ odd/even are two series (10,2,12,4…→10,12,14 & 2,4,6) ; 3-way also exists
Digit logic ⇒ sum/product of digits / spelling / reverse
Odd one out ⇒ rule fits most, one breaks it — test both hypotheses, pick simplest rule
1) Fast growth → ×/power ; 2) Slow → diff ; 3) Irregular → alternate ; 4) See 27/64→cubes, 17/19→primes ; 5) Digit logic last
Time-box 20s per check ; test rule on last gap before deciding
Forcing diff on GP ; mis-splitting interleaved ; assuming x,y constant when y changes ; odd-one where exception is actually second series start
Primary source: none pinned yet — drop your preferred video/book resource into RESOURCES.md and it will be linked here. Ask me anything that's unclear.
Questions? Ask your agent — you can follow up on any concept, quiz answer, or get extra practice problems tuned to this module.