🌐 EN

Fibonacci Calculator

Generate Fibonacci sequence up to the nth term and see the values.

nth Fibonacci Number (F10)
Sequence
GUIDE

Learn more

01

Understanding Fibonacci Sequence

The Fibonacci sequence starts with 0 and 1, with each subsequent number being the sum of the previous two. It appears in many natural phenomena.

02

Relationship with Golden Ratio

The ratio of consecutive Fibonacci numbers converges to the golden ratio (φ ≈ 1.618).

03

Programming Education

The Fibonacci sequence is frequently used as an example when learning recursion and dynamic programming.

04

Fibonacci in Nature and Art

The Fibonacci sequence can be found in nature, such as spiral structures, number of petals, and tree branch patterns.

Frequently asked questions

Does the sequence start at 0 or 1?
This calculator treats the 0th term as 0 and the 1st term as 1. Check the result table order, since some conventions start indexing differently.
What is the valid range for n?
You can enter an integer between 1 and 500. The calculator uses BigInt so large terms are displayed without losing integer precision.
How is the nth Fibonacci number calculated?
It uses the recurrence F(n) = F(n-1) + F(n-2), adding the two preceding terms to get the next one, starting from F(0)=0 and F(1)=1.
How does the sequence relate to the golden ratio?
The ratio of consecutive terms, F(n+1)/F(n), converges to the golden ratio (φ ≈ 1.618) as n grows larger.
What are Fibonacci numbers used for?
They appear in algorithm education (recursion, dynamic programming), natural patterns like petal counts and spirals, and financial Fibonacci retracement analysis.