πŸŒ€ Fibonacci Generator

Generate Fibonacci sequences with custom starting values and observe the convergence to the golden ratio.

FAQ

What is the Fibonacci sequence?

The Fibonacci sequence starts with 0 and 1, each subsequent number is the sum of the two preceding ones. F(0)=0, F(1)=1, F(n)=F(n-1)+F(n-2).

How is Fibonacci related to the golden ratio?

The ratio of consecutive Fibonacci numbers F(n)/F(n-1) converges to the golden ratio Ο† β‰ˆ 1.61803 as n increases.

Where does Fibonacci appear in nature?

Fibonacci numbers appear in sunflower seed spirals, nautilus shells, tree branching, pine cone spirals, and many other natural patterns.

What are practical uses of Fibonacci?

Fibonacci numbers are used in financial market analysis (Fibonacci retracement), algorithm design (Fibonacci heap/search), and art composition.