Calculate Fibonacci numbers and explore the sequence
Enter the position in the sequence (F₀ = 0, F₁ = 1, ...)
The Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones. The sequence starts with 0 and 1, and continues infinitely: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...
F(n) = F(n-1) + F(n-2)
with F(0) = 0 and F(1) = 1
The ratio of consecutive Fibonacci numbers (F(n)/F(n-1)) converges to the golden ratio φ, which is approximately 1.618033989. This number appears frequently in art, architecture, and nature, and is considered aesthetically pleasing.