answersLogoWhite

0


Best Answer

If the Fibonacci sequence is denoted by F(n), where n is the first term in the sequence then the following equation obtains for n = 0.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Explain how to find the terms of Fibonacci sequence?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Find the next 2 terms of the Fibonacci sequence 2.2.4.6?

They are: 10 and 16


Explanation of Fibonacci sequence?

The Fibonacci sequence adds the 2 previous terms to find the next one. For instance: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55... etc.


Why did Fibonacci find his sequence so interesing?

because you add the first 2 terms and the next tern was the the sum of the first 2 terms.


When did Leonardo Fibonacci find the Fibionacci sequence?

His treatise, Liber abaci (1202), contains the famous Fibonacci sequence.


Find the sum of all the even-valued terms in the Fibonacci sequence which do not exceed four million?

This question is posed on ProjectEuler, it is for you to figure out the answer.


Why did Fibonacci create the Fibonacci Sequence?

I think Fibonacci wanted to find how many swirls or petals were on a flower ....... most of them are Fibonacci numbers....i think.... doin a projct......= )


Can you explain Fibonacci's rabbit problem and find a diagram to explain?

Fibonacci's rabbit problem involves tracking the reproduction of rabbits over time, where each pair of rabbits produces another pair every month. The sequence of numbers that arises from this scenario is known as the Fibonacci sequence. A diagram typically shows the number of rabbit pairs at each time step, illustrating how the numbers grow according to the sequence.


Why did Fibonacci find his sequence so interesting?

Fibonacci found it interesting because he loved maths


Where does the Fibonacci sequence occur?

In nautilus shells and you have 5 fingers and that is a Fibonacci number. Find a better answer, I'm running out of answers!


Why Fibonacci thought the Fibonacci sequence was so interesting?

he didn't actually find it interesting, in fact he fell asleep straight after he found it .


When did Leonardo Fibonacci find the Fibonacci sequence?

no one knows ive searched everywhere and no one knows


How do you calculate the nth term in the Fibonacci sequence using C?

what? Assuming you wanted an algorithm to find the nth number in the Fibonacci sequence: double Fib(int i) { double x = 1; double y = 1; if (i