MathIsimple
7 min read
beginner

Fibonacci's Sequence Shows Up in Sunflowers, Shells, and Your Stock Charts

Count the spirals on a sunflower head. You'll get 34 and 55. Consecutive Fibonacci numbers. Every time.

April 26, 2026
Math Basics
Science
Real World Math
Patterns

Count the Spirals on a Sunflower. Then Check Your Answer.

Go outside and find a sunflower — or a photo of one. Count the spirals rotating clockwise. Then count the ones going counterclockwise.

You'll get 34 and 55. Or 21 and 34. Or 55 and 89. Consecutive numbers every time.

Those numbers belong to the Fibonacci sequence: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144... Each term is the sum of the two before it. The sunflower doesn't "know" this. It's just the most efficient geometry for packing seeds and leaves without crowding, and that efficiency produces Fibonacci numbers as a consequence.

But before the sunflower, let's start with the basics — because Fibonacci is just one of three fundamental types of sequences, and knowing all three is what makes the patterns recognizable.

Three Sequences, Three Different Growth Patterns

An arithmetic sequence adds the same fixed number each step. The common difference stays constant.

3, 7, 11, 15, 19, 23 ... (+4 each time)

A geometric sequence multiplies by the same fixed number each step. The ratio stays constant.

3, 6, 12, 24, 48, 96 ... (×2 each time)

Geometric sequences are why compound interest looks the way it does — covered in detail in the Rule of 72 article.

A Fibonacci-type sequence adds the two previous terms to get the next. The ratio between terms isn't fixed at the start, but it converges to something interesting.

1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144 ... (each term = sum of previous two)

The Golden Ratio Emerges as You Go Further

Divide any Fibonacci number by the one before it:

F(n)F(n-1)Ratio F(n)/F(n-1)
212.000
321.500
531.667
851.600
1381.625
21131.615
34211.619
55341.618
89551.618

The ratio converges to φ\varphi — the golden ratio:

φ=1+521.6180339\varphi = \frac{1 + \sqrt{5}}{2} \approx 1.6180339\ldots

It's irrational — the decimal never terminates or repeats. And it appears as the limiting ratio of any Fibonacci-type sequence, regardless of the starting values.

Why Plants Grow in Fibonacci Spirals

Plants grow new leaves, seeds, and petals one at a time at the growing tip. Each new element emerges at an angle from the previous one. The question is: what angle maximizes sunlight and space for every element in the spiral?

The optimal angle turns out to be the golden angle: approximately 137.5°. That angle is derived from the golden ratio, and it's irrational — meaning no two elements ever line up on the same spoke, maximizing coverage.

The result is a packing of spirals that consistently produces consecutive Fibonacci numbers. The sunflower doesn't compute this. Evolution selected for the most efficient geometry, and the math happens to be Fibonacci.

Common examples: sunflower seed spirals (34 & 55 or 55 & 89), pinecone scales (8 & 13), pineapple ridges (8 & 13 or 13 & 21), romanesco broccoli spirals (13 & 21), daisy petals (typically 13, 21, or 34).

Binet's Formula: Skip Straight to the Nth Term

Without a shortcut, finding F(50) means computing all 50 terms. With Binet's formula, you can jump directly to any term:

F(n)=φnψn5F(n) = \frac{\varphi^n - \psi^n}{\sqrt{5}}

where φ=1+521.618\varphi = \frac{1+\sqrt{5}}{2} \approx 1.618 and ψ=1520.618\psi = \frac{1-\sqrt{5}}{2} \approx -0.618.

Because ψ<1|\psi| < 1, the ψn\psi^n term shrinks rapidly. For large nn, you can approximate F(n)φn5F(n) \approx \frac{\varphi^n}{\sqrt{5}} — which shows that Fibonacci numbers grow exponentially, at rate φ\varphi per step.

In practice, floating-point precision limits Binet's formula to roughly the first 70 Fibonacci numbers before rounding errors corrupt the result. For exact large Fibonacci numbers, iterative computation is more reliable.

Fibonacci Retracements in Finance (And What the Research Actually Says)

Technical analysts use Fibonacci ratios — 23.6%, 38.2%, 50%, 61.8%, 78.6% — as potential support and resistance levels in stock and forex charts. These levels come from Fibonacci sequence ratios:

61.8% is 1/φ0.6181/\varphi \approx 0.618. 38.2% is 10.6181 - 0.618. 23.6% is 0.61820.2360.618^2 \approx 0.236.

Does it work? The academic evidence is mixed. Some studies find Fibonacci levels perform no better than random horizontal lines. Others find modest predictive value in heavily traded markets. What's not debatable: millions of traders use these levels, which creates self-fulfilling effects in liquid markets regardless of underlying mathematical validity.

Knowing the math — where the 61.8% level actually comes from — doesn't tell you whether to trade it. But it does tell you it's not magic.

Quick Questions

What's the difference between a sequence and a series?

A sequence is a list of numbers in order (1, 1, 2, 3, 5, 8...). A series is the sum of a sequence's terms (1 + 1 + 2 + 3 + 5 + 8 = 20). Related concepts, but the distinction matters in calculus and combinatorics.

What is the nth term formula for an arithmetic sequence?

an=a1+(n1)da_n = a_1 + (n-1)d, where a1a_1 is the first term and dd is the common difference. For the sequence 3, 7, 11, 15: a1=3a_1 = 3, d=4d = 4, so the 10th term is 3+9×4=393 + 9 \times 4 = 39.

Is the golden ratio really in the Parthenon and Renaissance paintings?

Mostly myth. Most claimed golden-ratio appearances in architecture and art result from selective measurement — if you measure enough rectangles in a complex structure, some will approximate any ratio you're looking for. Academic analysis of the Parthenon and Leonardo's work generally doesn't support deliberate golden-ratio use. The genuine appearances are in biology and mathematics, not human design.

Generate Any Sequence in Seconds

Fibonacci, arithmetic, geometric, or custom recurrence relations — find any term, visualize the pattern, and see convergence to the golden ratio as you go further.

*Also computes partial sums and identifies sequence type automatically.

Ask AI ✨