Initial fibonacci
Weekly problem 46 - 2006
What is the first term of a Fibonacci sequence whose second term is 4 and fifth term is 22?
What is the first term of a Fibonacci sequence whose second term is 4 and fifth term is 22?
Problem
The standard Fibonacci sequence 1, 1, 2, 3, 5, 8, 13, ? begins with two 1s and each later number in the sequence is the sum of the previous two numbers. Other Fibonacci like sequences can be constructed by starting with any two numbers a and b (not necessarily 1 and 1) and using the same rule for creating the other numbers in the sequence. What is the first term of the Fibonacci-like sequence whose second term is 4 and whose fifth term is 22?
If you liked this problem, here is an NRICH task which challenges you to use similar mathematical ideas.
Student Solutions
Let the first term be x, then the sequence is x, x+4, x+8, 2x+12. So 2x+12=22 and hence x=5.