164k views
4 votes
One of the most famous sequences is the Fibonacci sequence:

1, 1, 2, 3, 5, 8, 13, 21, 34, ….
f(n + 1) = f(n) + f(n − 1), where f(1) = 1, f(2) = 1, and n ≥ 2.
How is each term of the sequence generated?

User Av Pinzur
by
7.7k points

1 Answer

4 votes
Each term is generated by adding the two terms before it
User Billy Logan
by
8.1k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.