Pattern recognition is one of the most underrated skills in mathematics. It sits at the intersection of mental math, algebra, and problem-solving — and it appears in WAEC papers, competitive maths challenges, mental arithmetic battles, and everyday situations more consistently than almost any other topic. Yet most students treat it as a vague, intuitive skill rather than something that can be systematically learned.

It can be learned. There are specific types of sequences, specific techniques for identifying them, and specific formulas for calculating any term or sum without writing out the whole list. This article covers all of them — from the fundamentals of arithmetic and geometric sequences to the more subtle patterns that separate strong problem-solvers from everyone else.

WHAT A SEQUENCE ACTUALLY IS

A sequence is simply a list of numbers arranged in a specific order, where each number is generated by a rule. The numbers in the list are called terms — the first term, second term, third term, and so on. The rule that generates each term from the previous one (or from its position in the list) is the key to working with the sequence.

Most sequence questions ask you to do one of three things: find the next term, find the nth term (a formula), or find the sum of the first n terms. Each of these requires a slightly different approach, but all three start with the same step: identify the type of sequence.

ARITHMETIC SEQUENCES — THE MOST COMMON TYPE

An arithmetic sequence (also called an arithmetic progression or AP) is one where the difference between any two consecutive terms is constant. That constant difference is called the common difference, usually written as d.

Sequence: 3, 7, 11, 15, 19... Differences: 7−3=4, 11−7=4, 15−11=4 ✓ This is an AP with first term a=3 and common difference d=4
Sequence: 20, 15, 10, 5, 0, −5... Differences: 15−20=−5 (every difference is −5) This is a decreasing AP with a=20 and d=−5

The Four Key AP Formulas

These four formulas solve virtually every arithmetic sequence question in WAEC and competitive mathematics. Memorise them precisely — small errors in the formula lead to wrong answers even when your method is correct.

nth term of an AP:   Tₙ = a + (n−1)d Sum of first n terms:   Sₙ = n/2 × (2a + (n−1)d) Alternatively:   Sₙ = n/2 × (first term + last term) Number of terms:   n = (last term − a)/d + 1
Example: Find the 20th term and sum of the first 20 terms of 3, 7, 11, 15... a = 3, d = 4, n = 20 T₂₀ = 3 + (20−1)×4 = 3 + 76 = 79 S₂₀ = 20/2 × (2×3 + 19×4) = 10 × (6 + 76) = 10 × 82 T₂₀ = 79  ·  S₂₀ = 820
💡 The "first + last" sum shortcut:

When you already know the first and last terms, the sum is simply: (n ÷ 2) × (first + last). This was Gauss's method — the famous story of the child who instantly summed 1+2+3...+100 as 50 × 101 = 5050. Any AP sum becomes trivial once you see it this way.

GEOMETRIC SEQUENCES — POWERS IN DISGUISE

A geometric sequence (GP) is one where each term is obtained by multiplying the previous term by a fixed number — the common ratio, written r. Unlike arithmetic sequences where you add a constant, here you multiply.

Sequence: 2, 6, 18, 54, 162... Ratios: 6/2=3, 18/6=3, 54/18=3 ✓ GP with a=2, r=3
Sequence: 64, 32, 16, 8, 4... Ratios: 32/64=½, 16/32=½ ✓ Decreasing GP with a=64, r=½

The Key GP Formulas

nth term of a GP:   Tₙ = a × rⁿ⁻¹ Sum of first n terms (r ≠ 1):   Sₙ = a(rⁿ − 1) / (r − 1)  when r > 1 Or:   Sₙ = a(1 − rⁿ) / (1 − r)  when r < 1
Example: Find the 6th term and sum of the first 6 terms of 2, 6, 18... a = 2, r = 3, n = 6 T₆ = 2 × 3⁵ = 2 × 243 = 486 S₆ = 2(3⁶ − 1)/(3−1) = 2(729−1)/2 = 728 T₆ = 486  ·  S₆ = 728

SPOTTING A PATTERN IN ANY SEQUENCE

When you encounter an unfamiliar sequence, use this 4-step diagnostic:

Step 1 — Check first differences. Subtract consecutive terms. If all differences are equal → arithmetic sequence. Done.

Step 2 — Check ratios. Divide consecutive terms. If all ratios are equal → geometric sequence. Done.

Step 3 — Check second differences. If the first differences aren't equal, find the differences of the differences. If those are equal → quadratic sequence (nth term has an n² term).

Step 4 — Check for a recognisable pattern. Is it the squares (1, 4, 9, 16...)? The cubes (1, 8, 27...)? The Fibonacci sequence (each term is the sum of the previous two)? The powers of 2 (1, 2, 4, 8...)? Recognising these immediately saves significant calculation time.

Sequence: 1, 4, 9, 16, 25... → Square numbers (n²) Sequence: 2, 5, 10, 17, 26... → n² + 1 First differences: 3, 5, 7, 9... (odd numbers, increasing by 2) Second differences: 2, 2, 2 ✓ → Quadratic, nth term = n² + 1 10th term: 10² + 1 = 101

SPECIAL SEQUENCES YOU MUST RECOGNISE INSTANTLY

These patterns appear so frequently in WAEC, Arithmos Arena, and general maths that instant recognition is worth building deliberately:

SQUARES 14916253649
CUBES 182764125216
POWERS OF 2 1248163264
TRIANGULAR 136101521
FIBONACCI 11235813

SUMMING SEQUENCES WITHOUT LISTING EVERY TERM

One of the most powerful sequence skills is calculating the sum of a long sequence without listing or adding every single term. This is where the formulas earn their keep:

Sum of all even numbers from 2 to 100 AP with a=2, d=2, last term=100 Number of terms: (100−2)/2 + 1 = 50 Sum = 50/2 × (2 + 100) = 25 × 102 Answer: 2,550
Sum of all multiples of 3 between 1 and 200 First multiple: 3. Last multiple: 198 (=3×66) AP with a=3, d=3, n=66 Sum = 66/2 × (3 + 198) = 33 × 201 Answer: 6,633

SEQUENCE QUESTIONS IN COMPETITIONS AND ARITHMOS ARENA

In competitive maths settings, sequence questions are rarely straightforward "find the next term" problems. They typically involve:

The skill that separates fast solvers from slow ones is not calculation speed for these questions — it's the instant recognition of which formula applies and which values of a, d, r, and n to plug in. That recognition is built through deliberate exposure to varied sequence problems, not through re-reading the same formulas.

⚡ SEQUENCE SPEED DRILL

Solve each in under 60 seconds. Show no working — just the answer:

  • Find the 15th term of the sequence: 4, 7, 10, 13...
  • What is the sum of 5 + 10 + 15 + ... + 100?
  • Find the 8th term of the GP: 3, 6, 12, 24...
  • The nth term of a sequence is 3n² − 2. What is the 6th term?
  • How many terms are in the AP: 7, 11, 15... 99?

Answers: 46 · 1,050 · 384 · 106 · 24


WHY PATTERN RECOGNITION IS A LIFE SKILL, NOT JUST AN EXAM SKILL

The ability to look at a sequence of numbers and extract the underlying rule is a form of systematic thinking that transfers far beyond mathematics. Data analysts identify trends in sequences of sales figures. Programmers recognise repeating patterns in data structures. Scientists identify cyclical patterns in measurements. Financial analysts spot patterns in price movements.

Every student who masters sequences in the context of WAEC preparation is simultaneously developing a generalised pattern-recognition capability that will serve them in university, in careers, and in the increasingly data-rich world they're entering. That's the thing about genuinely useful maths skills — they don't stay inside the exam hall.