Fibonacci Generator
Result
| Sequence |
|---|
Share on Social Media:
Fibonacci Generator — The Sequence Behind Sunflowers and Sprints
0, 1, 1, 2, 3, 5, 8, 13, 21... each number the sum of its two predecessors, growing toward the golden ratio. This free generator lists any stretch of the sequence, jumps directly to the millionth-scale term with exact big-integer precision, and shows the consecutive-term ratios converging on φ = 1.618... In-browser, no signup.
Landmarks Along the Sequence
| Term | Value | Note |
|---|---|---|
| F(10) | 55 | sunflower spiral count |
| F(20) | 6,765 | |
| F(50) | 12,586,269,025 | past 32-bit range |
| F(93) | 1.22 × 10¹⁹ | last term fitting in 64 bits |
| F(100) | 354,224,848,179,261,915,075 | 21 digits, exact here |
The Golden Ratio Connection
Divide any term by its predecessor and the results oscillate ever closer to φ ≈ 1.6180339887 — above, below, above, converging. Binet's closed form F(n) = (φⁿ − ψⁿ)/√5 means the sequence literally is powers of the golden ratio in disguise, which is why golden rectangles, pentagons, and Fibonacci spirals keep meeting in geometry.
Why Nature Keeps Choosing These Numbers
Plants placing seeds or leaves at the golden angle (≈137.5°) achieve optimal packing with no two elements aligned — and counting the resulting spirals yields consecutive Fibonacci numbers: 34 one way, 55 the other on a typical sunflower. It's efficient geometry, discovered by evolution, described by this sequence.
Fibonacci in Working Life
- Agile estimation — story points use 1, 2, 3, 5, 8, 13 because uncertainty grows with size; adjacent options differ meaningfully.
- Programming interviews — the canonical recursion/memoization example; generate test values here.
- Trading — Fibonacci retracement levels (23.6%, 38.2%, 61.8%) derive from term ratios.
Free and Exact
Every digit of every term, computed locally — no rounding, no account, no limits.