ToolBark
Math

Fibonacci Calculator

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

Last Term — F(15)377
#IndexValue
1F(1)0
2F(2)1
3F(3)1
4F(4)2
5F(5)3
6F(6)5
7F(7)8
8F(8)13
9F(9)21
10F(10)34
11F(11)55
12F(12)89
13F(13)144
14F(14)233
15F(15)377

Quick stats

Terms: 15Sum: 986F(1) = 0F(15) = 377

About Fibonacci Numbers

Definition
Each number is the sum of the two preceding ones: F(n) = F(n−1) + F(n−2), with F(1) = 0 and F(2) = 1.
Golden Ratio
As n grows, the ratio of consecutive Fibonacci terms converges to the golden ratio φ ≈ 1.61803…
Applications
Found in nature (flower petals, shell spirals), computer science (search algorithms), and financial analysis.
Large values
This calculator uses JavaScript BigInt so results are exact, even for very large term indices.
About

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.

FAQ
What is the Fibonacci sequence?+

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).

What is the Nth Fibonacci number?+

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.

How large can Fibonacci numbers get?+

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.

Where are Fibonacci numbers used in real life?+

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.

Related tools