Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
9f7726e390 Update README.md
All checks were successful
ci / build (push) Successful in 3m7s
2025-07-31 09:39:46 +00:00

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