In a sequence of positive integers, every term after the first two terms is the sum of the two previous terms in the sequence. If the fifth term is 2012, what is the maximum possible value of the first term?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
if the first 2 positive integer is a & b
the the sequence will be a, b, a+b, a+2b, 2a+3b
now, 2a+3b = 2012
=> a + 1.5b = 1006
if b = 2 then a will be the maximum. so the first term is 1003