How to generate Fibonacci numbers
Type how many terms you want and the list appears immediately, starting from 0. Each number is the sum of the two before it, and the arithmetic is done with BigInt so the values stay exact no matter how large they get.
That exactness is the point of the tool. Any sequence generator using ordinary floating-point numbers starts producing incorrect digits at the 79th term, and it does so without any indication that anything has gone wrong.
- Enter how many Fibonacci numbers you want, from 1 up to 200.
- Read the comma-separated list in the result box, which starts at 0.
- For the nth Fibonacci number, ask for n terms and take the last value.
- Use Copy result to put the whole sequence on the clipboard.
- If you asked for more than 200 terms, note that the list was silently capped at 200.