Fibonacci Generator

Generate the Fibonacci sequence up to N terms with golden ratio display.

  1. Home
  2. Utilities
  3. Fibonacci Generator

Fibonacci Sequence

Sum
--
Golden Ratio (F(n)/F(n-1))
--
N-th Term
--
--

How to Use

  1. Set terms — Enter how many Fibonacci numbers to generate (up to 1000).
  2. Choose start — Select whether to start from F(0)=0 or F(1)=1.
  3. View results — See the sequence, sum, N-th term, and golden ratio approximation.

Frequently Asked Questions

What is the Fibonacci sequence?

The Fibonacci sequence is a series where each number is the sum of the two preceding ones. It starts with 0, 1, 1, 2, 3, 5, 8, 13, and continues infinitely.

What is the golden ratio?

As the Fibonacci sequence progresses, the ratio of consecutive terms approaches the golden ratio (φ ≈ 1.61803). This ratio appears in nature, art, and architecture.

What is the largest term I can generate?

This tool generates up to 1000 terms. F(1000) has 209 digits. JavaScript can handle this using BigInt internally.