Number Series & Progressions

RoadmapsAptitude

Scenario

Finding bugs in log files often requires spotting anomalies in timestamp intervals. That's essentially sequence pattern recognition.

Mental model

Every series hides a simple engine generating the next term.

Progressions are formal math engines (constant addition or constant multiplication). Number series puzzles combine multiple basic engines, like squares, primes, and alternating steps.

Formula

AP: Nth term = a + (n-1)d. Sum of N terms = n/2 x (2a + (n-1)d) = n/2 x (first + last). GP: Nth term = a x r^(n-1). Sum of N terms = a x (r^n - 1) / (r - 1) for r != 1. Sum of infinite GP = a / (1 - r) for |r| < 1. Special sums: sum of first N naturals = N(N+1)/2. Sum of first N squares = N(N+1)(2N+1)/6. Sum of first N cubes = [N(N+1)/2]^2. AP average = (first + last) / 2 = middle term (if odd count).

AP grows by a constant difference d (linear). GP grows by a constant ratio r (exponential). For series puzzles, always compute first differences, then second differences - most OA series reveal their pattern by the second tier.

Pattern discovery

Find the differences between consecutive terms and observe the second-level differences.

If first differences form an arithmetic progression, what type of series is the original?

Rule: If the first differences form an arithmetic progression, the original series is quadratic (squares). Constant first differences = linear (AP). Constant ratio of terms = geometric (GP).

Worked example

Problem: Find the 15th term and the sum of the first 15 terms of the AP: 3, 7, 11, 15, ...

  1. Identify: a = 3, d = 7 - 3 = 4.
  2. 15th term = a + (n-1)d = 3 + (15-1) x 4 = 3 + 56 = 59.
  3. Sum of 15 terms = n/2 x (first + last) = 15/2 x (3 + 59) = 7.5 x 62 = 465.
  4. Sanity-check using formula: n/2 x (2a + (n-1)d) = 15/2 x (6 + 56) = 7.5 x 62 = 465. Matches.

Answer: 15th term = 59, Sum = 465.

Problem: What is the missing term in the series: 4, 9, 19, 34, 54, ?

  1. Find first differences: 9-4=5, 19-9=10, 34-19=15, 54-34=20.
  2. First differences: 5, 10, 15, 20 - these increase by 5 each time (AP with d=5).
  3. Next first difference = 25.
  4. Missing term = 54 + 25 = 79.
  5. Sanity-check: The pattern of differences (5, 10, 15, 20, 25) is consistent.

Answer: 79.

Shortcuts

Common mistakes

Glossary

engine
A simple hidden rule or formula that generates the next part of a pattern.
exponential
Growing very quickly by multiplying, rather than just adding.
inclusive
Counting both the starting number and the ending number, as well as everything in between.

Recall questions

Questions & answers

Find the missing term: 3, 7, 16, 32, 57, ?

93

Approach: Differences: 4, 9, 16, 25. These are squares (2^2, 3^2, 4^2, 5^2). Next difference is 6^2 = 36. 57 + 36 = 93.

Find the sum of all 2-digit numbers divisible by 3.

1665

Approach: AP: first term a=12, last term L=99, d=3. N = ((99-12)/3) + 1 = 30. Sum = 30/2 x (12 + 99) = 15 x 111 = 1665.

Return to Aptitude Roadmap