Find the next term: 1, 1, 2, 3, 5, 8, ...

medium 3 min read

Question

Find the next term in the sequence: 1, 1, 2, 3, 5, 8, …

Also explain the pattern that governs this sequence.

Solution — Step by Step

List the terms with their positions:

  • a1=1a_1 = 1
  • a2=1a_2 = 1
  • a3=2a_3 = 2
  • a4=3a_4 = 3
  • a5=5a_5 = 5
  • a6=8a_6 = 8

Check if each term is the sum of the two before it:

  • a3=a1+a2=1+1=2a_3 = a_1 + a_2 = 1 + 1 = 2
  • a4=a2+a3=1+2=3a_4 = a_2 + a_3 = 1 + 2 = 3
  • a5=a3+a4=2+3=5a_5 = a_3 + a_4 = 2 + 3 = 5
  • a6=a4+a5=3+5=8a_6 = a_4 + a_5 = 3 + 5 = 8

The rule is clear: each term equals the sum of the two immediately preceding terms. This is the defining rule of the Fibonacci sequence, named after the Italian mathematician Leonardo of Pisa (Fibonacci), who introduced it to Europe in 1202.

The recurrence relation is: an=an1+an2a_n = a_{n-1} + a_{n-2} for n3n \geq 3, with a1=1a_1 = 1 and a2=1a_2 = 1.

The next term is a7a_7:

a7=a5+a6=5+8=13a_7 = a_5 + a_6 = 5 + 8 = \mathbf{13}

The sequence continues: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, …

Why This Works

The Fibonacci recurrence an=an1+an2a_n = a_{n-1} + a_{n-2} is one of the simplest second-order recurrence relations. The reason this specific pattern is so famous is that it shows up naturally in biological growth — the spiral arrangement of seeds in a sunflower, the branching of trees, the spiral of a nautilus shell, and the arrangement of leaves on a stem all follow Fibonacci numbers.

In mathematics, the ratio of consecutive Fibonacci numbers an+1/ana_{n+1}/a_n approaches the Golden Ratio ϕ=(1+5)/21.618\phi = (1 + \sqrt{5})/2 \approx 1.618 as nn increases. For example, 8/5=1.68/5 = 1.6 and 13/8=1.62513/8 = 1.625 — both close to ϕ\phi.

Alternative Method

We can verify using the closed-form formula (Binet’s formula), though this is beyond school level:

Fn=15[(1+52)n(152)n]F_n = \frac{1}{\sqrt{5}}\left[\left(\frac{1+\sqrt{5}}{2}\right)^n - \left(\frac{1-\sqrt{5}}{2}\right)^n\right]

For school exams, simply applying the recurrence an=an1+an2a_n = a_{n-1} + a_{n-2} is sufficient and expected.

For pattern recognition questions in competitive exams, always check three operations: (1) constant difference (arithmetic), (2) constant ratio (geometric), and (3) each term = sum/product of previous terms. If none work, look for alternating patterns or squares. The Fibonacci rule — each term = sum of two preceding — is specifically tested in olympiad papers and aptitude tests.

Common Mistake

Some students see the pattern 1, 1, 2, 3, 5, 8 and think it’s arithmetic or geometric because the early terms look deceivingly simple. Check: 21=12-1=1, 32=13-2=1, 53=25-3=2, 85=38-5=3 — the differences are themselves 1, 1, 2, 3… which is the Fibonacci pattern again! So this is NOT arithmetic (constant differences) and NOT geometric (constant ratio). It’s a recurrence — each term depends on the two before it.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next