PB
Available
calculate
lock Free · Private · In-Browser

Fibonacci Sequence Generator

Generate exact Fibonacci numbers, however many terms you need.

The classic sequence, exactly

The Fibonacci sequence starts 0 and 1, and every term after is the sum of the two before it. It shows up everywhere from sunflower spirals to the running time of algorithms, and this generator lists as many exact terms as you ask for.

The first fifteen terms are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377. As the sequence grows, the ratio between neighbouring terms closes in on the golden ratio, roughly 1.618.

Exact and private

Terms are built with big integers so large values keep every digit, and the whole sequence is generated in your browser with nothing uploaded.

Frequently Asked Questions

What is the Fibonacci sequence?

Each term is the sum of the previous two, starting 0, 1, 1, 2, 3, 5, 8, 13… It appears in nature, art, and algorithm analysis.

Are the large terms exact?

Yes. The generator uses big integers, so even far-out terms with hundreds of digits are computed exactly, not rounded.

What is the golden ratio connection?

The ratio of consecutive terms approaches φ ≈ 1.618 as the sequence grows, which the tool shows for the last pair.

Take it further
All Free Tools

Browse the full set of free, private, in-browser tools.

Learn More arrow_forward