What is the Fibonacci sequence?
23 October 2022 (Updated 23 October 2022)
On this page
In a nutshell
Fibonacci sequence is the series of numbers that start with 0
and 1
and take the following pattern:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...
After the first two numbers (0
and 1
), you find the next number by adding the preceding two numbers.
Implementation in code
See this post.
Tagged:
Misc
Thanks for your comment 🙏. Once it's approved, it will appear here.
Leave a comment