The rule is the simplest in mathematics — every term is the sum of the two before it, starting from 0 and 1 — and almost everything interesting about the sequence follows from that one line. This page works in both directions. Give it a position and it returns that term exactly, along with its neigh...
WORTH TRYING
F(10)
55
RATIO TO F(9)
1.617647
2 digits · previous 34 · next 89 · φ is 1.618034, so this is off by 3.9e-4
Digits
2
Lucas L(n)
123
Sum of F(1)…F(n)
143
Ratio to previous
1.617647059
Exact in a double?
yes
Index n
10
AROUND F(10)
n
F(n)
DIGITS
7
13
2
8
21
2
9
34
2
10
55
2
11
89
2
12
144
3
13
233
3
STEPS
Every term is the sum of the two before it, starting from F(0) = 0 and F(1) = 1
F(10) = F(9) + F(8) = 34 + 21
2 digits, small enough to hold exactly in ordinary arithmetic
F(10) = 55
GOLDEN SPIRAL
The squares build the sequence. Each new square takes the whole long side of what is already there, so its side is the sum of the two before it — which is the Fibonacci rule stated in geometry rather than arithmetic. The rectangle is always F(k) by F(k+1), and the quarter arcs join end to end into the spiral. It approaches the golden spiral without ever being one: this is built from circular arcs, and the true golden spiral is a smooth logarithmic curve. Square 10 is picked out in gold.
THE RATIO CLOSING ON φ
Bar length is the distance from φ = 1.618033989, so shorter is closer. The ratio alternates above and below it and the error falls by roughly a factor of φ² each step, which is why n = 40 already matches φ to the last digit a double can hold.
Exact, not floating point. F(78) is the last term that fits exactly in ordinary double arithmetic; F(79) is 14,472,334,024,676,221, which is past the limit. Everything here is computed with exact big integers, so F(500) is right to the final digit rather than rounded. Indices run to 1,000.
Live simulation · drawn to scale · updates as you type
In TERM mode, enter a position from 0 to 1000. You get that Fibonacci number in full, its digit count, the terms either side, the Lucas number at the same index, the running total of everything up to it, and the ratio to the previous term with its distance from φ.
Try 78 and then 79. The first is the last term that fits exactly in ordinary computer arithmetic and the second is not, which is the single most common source of wrong answers on other Fibonacci pages. Both are exact here.
Switch to IS IT ONE? and type any whole number up to thirty digits. The 5N² ± 4 test settles it immediately, and if the number is not in the sequence you get the two terms it falls between plus its Zeckendorf representation — the one and only way to write it as a sum of non-consecutive Fibonacci numbers.
Watch the spiral build, or drag the scrubber a square at a time. Each square takes the full long side of the rectangle so far, so its side is the sum of the two before it, and the rectangle is always F(k) by F(k+1).
What is the 10th Fibonacci number? Start from F(0) = 0 and F(1) = 1 and apply the rule ten times: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55. So F(10) = 55. The terms either side are F(9) = 34 and F(11) = 89. Dividing 55 by 34 gives 1.617647059, which is already within 0.0004 of φ = 1.618033988749895 — and it is below φ, because the ratios alternate. Three things follow from the factorisation of the sequence rather than from more counting. The running total F(1) + … + F(10) is 143, which is F(12) − 1 = 144 − 1, and that identity holds for every n. The Lucas number at the same index is L(10) = F(9) + F(11) = 34 + 89 = 123. And the sum of the squares up to F(10) is F(10) × F(11) = 55 × 89 = 4,895. Now the other direction. Is 100 a Fibonacci number? The test asks whether 5 × 100² + 4 = 50,004 or 5 × 100² − 4 = 49,996 is a perfect square. Neither is, so 100 is not in the sequence — it falls between F(11) = 89 and F(12) = 144. It can still be written using Fibonacci numbers, though, in exactly one way with no two of them adjacent: 100 = 89 + 8 + 3, at indices 11, 6 and 4.
What is the 3rd Fibonacci Number?
Calculate instantly →
What is the 4th Fibonacci Number?
Calculate instantly →
What is the 5th Fibonacci Number?
Calculate instantly →
What is the 6th Fibonacci Number?
Calculate instantly →
What is the 7th Fibonacci Number?
Calculate instantly →
What is the 8th Fibonacci Number?
Calculate instantly →
What is the 9th Fibonacci Number?
Calculate instantly →
What is the 10th Fibonacci Number?
Calculate instantly →
What is the 11th Fibonacci Number?
Calculate instantly →
What is the 12th Fibonacci Number?
Calculate instantly →
What is the 13th Fibonacci Number?
Calculate instantly →
What is the 14th Fibonacci Number?
Calculate instantly →
What is the 15th Fibonacci Number?
Calculate instantly →
What is the 16th Fibonacci Number?
Calculate instantly →
What is the 1st Fibonacci Number?
Calculate instantly →
What is the 17th Fibonacci Number?
Calculate instantly →
What is the 18th Fibonacci Number?
Calculate instantly →
What is the 19th Fibonacci Number?
Calculate instantly →
What is the 2nd Fibonacci Number?
Calculate instantly →
Last updated: July 29, 2026 · Formula verified · Exact big-integer arithmetic, so terms past F(78) are right to the final digit · Eagle-eyed accuracy for every calculation.