Dev Tools

Fibonacci Generator

Generate Fibonacci sequences and calculate the Nth Fibonacci number with support for very large values.

Generate Fibonacci Sequence
Number of terms (1-100)
First 20 Fibonacci numbers (F(0) to F(19)):
01123581321345589144233377610987159725844181
Calculate Nth Fibonacci Number
N (1-1000)
F(50):
7778742049
10 digits
About Fibonacci Numbers

The Fibonacci sequence starts with F(0) = 0 and F(1) = 1. Each subsequent number is the sum of the two preceding ones:

F(n) = F(n-1) + F(n-2)

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

The ratio of consecutive Fibonacci numbers converges to the golden ratio (phi) = (1 + sqrt(5)) / 2 = 1.6180339887...

Was this page helpful?

Related tools

About Fibonacci Generator

Generate the Fibonacci sequence up to a chosen count or limit. Useful for examples, tests, and exploring the golden-ratio relationship between consecutive terms.

How to use

  1. Enter how many terms you want, or an upper limit.
  2. Generate the sequence.
  3. Copy the numbers for use in your work.

Frequently asked questions

Where does the sequence start?
It starts at 0 and 1 by default, with each term the sum of the previous two.
Can it produce very large terms?
Yes — large terms are handled accurately beyond the usual safe-integer limit.