Generate any Fibonacci sequence or find the exact Nth term instantly
Settings
Enter 1 – 200 to display that many Fibonacci numbers.
Fibonacci Sequence — 15 terms
Quick stats
About Fibonacci Numbers
The Fibonacci sequence — where each number is the sum of the two before it — appears everywhere from sunflower spirals to stock market analysis. Use this free Fibonacci calculator to instantly generate the full sequence up to 200 terms, or look up the precise value of any single Nth Fibonacci number. Results use BigInt arithmetic for exact, lossless output on large values.
The Fibonacci sequence starts with 0 and 1, then each subsequent number is the sum of the two before it: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, … It is defined by F(n) = F(n−1) + F(n−2).
The Nth Fibonacci number is simply the value at position N in the sequence. For example, F(7) = 8. This calculator uses 1-based indexing: F(1) = 0, F(2) = 1, F(3) = 1, and so on.
They grow exponentially — F(100) already exceeds 354 quadrillion. This tool uses JavaScript BigInt internally, so every result is mathematically exact with no floating-point rounding, even for the 200th term.
Fibonacci numbers appear in plant growth patterns (petal counts, seed spirals), architecture, art (the golden ratio), computer science algorithms like Fibonacci search and heaps, and even in technical analysis of financial markets.