Fibonacci Sequence Calculator
Calculate Fibonacci numbers with golden ratio connection and sequence visualization
Enter a non-negative integer (0 to 10000)
Résultats
Entrez les valeurs et cliquez sur Calculer pour voir le résultat.
Theory & Formula
Theory
The Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones. Named after Leonardo Fibonacci (13th century), this sequence appears extensively in nature, art, and mathematics.
Recursive Formula
Binet's Formula (Closed Form)
where \(\phi = \frac{1 + \sqrt{5}}{2} \approx 1.618\) (golden ratio)
Properties
- Every 3rd Fibonacci number is divisible by 2
- Every 4th Fibonacci number is divisible by 3
- The ratio of consecutive Fibonacci numbers approaches φ (golden ratio)
- Sum of first n Fibonacci numbers: F₁ + F₂ + ... + Fₙ = Fₙ₊₂ - 1
Applications
Fibonacci numbers appear in nature (spiral patterns in shells, flower petals, pine cones), computer science (algorithm analysis, dynamic programming), financial markets (Fibonacci retracement), and art & architecture (proportions).
Example
Sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144...