Update README.md

This commit is contained in:
richardrobertreitz 2025-07-31 09:39:46 +00:00
parent 116927f472
commit 9f7726e390

View file

@ -10,13 +10,13 @@
In mathematics, the Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, and characterized by the fact that every number after the first two is the sum of the two preceding ones:
```
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
```
Often, especially in modern usage, the sequence is extended by one more initial term:
```
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
```
## Implementation Details