A sequence { a n } is such that a 1 = 1 , a 2 = 3 , a 3 = 6 , and a n = 3 a n − 1 − a n − 2 − 2 a n − 3 for n ≥ 4 .
If a n > λ × 2 n − 2 for all n ≥ 4 , find the maximum integer value of λ .
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.
a 4 = 3 ( 6 ) − ( 3 ) − 2 ( 1 ) = 1 3
And 1 3 > λ × 2 4 − 2 so λ < 3 . 2 5 .
Since λ is constant for all a n > λ × 2 n − 2 , the floor value of λ will be the maximum (constant/non increasing afterwards) at a 4 , which is 3 .
Let x n = a n / 2 n − 2 our goal to find greatest integer lesser or equal then minimum of this sequence for n ≥ 4
x 1 = 2 , x 2 = 3 , x 3 = 3 , and x n = 4 1 ( 6 x n − 1 − x n − 2 − x n − 3 )
x n is increasing sequence.
It can be proven by induction:
base x 1 ≤ x 2 ≤ x 3 is given.
If x n − 1 ≥ x n − 2 ≥ x n − 3 then x n = 4 1 ( 6 x n − 1 − x n − 2 − x n − 3 ) ≥ 4 1 ( 6 x n − 1 − x n − 1 − x n − 1 ) = x n − 1
So minimum of x n for n ≥ 4 is x 4 = 4 1 3 and answer is ⌊ 4 1 3 ⌋ = 3
Problem Loading...
Note Loading...
Set Loading...
From the linear recurrence relation a n = 3 a n − 1 − a n − 2 − 2 a n − 3 , the characteristic polynomial is as below:
r 3 − 3 r 2 + r + 2 ( r − 2 ) ( r 2 − r − 1 ) ( r − 2 ) ( r − φ ) ( r + φ − 1 ) = 0 = 0 = 0 where φ = 2 1 + 5 is the golden ratio.
Therefore a n = c 1 2 n + c 2 φ n + c 3 ( − φ − 1 ) n , where c 1 , c 2 , and c 3 are constants. Solving the simultaneous equations below:
⎩ ⎪ ⎨ ⎪ ⎧ a 1 = 2 c 1 + c 2 φ − c 3 φ − 1 = 1 a 2 = 4 c 1 + c 2 φ 2 + c 3 φ − 2 = 3 a 3 = 8 c 1 + c 2 φ 3 + c 3 φ − 3 = 6
we get c 1 = 1 , c 2 = − 5 1 , and c 3 = 5 1 . Therefore a n = 2 n − 5 φ n − ( − φ ) − n = 2 n − F n , where F n denotes that n th Fibonacci number .
Then we have a n > λ × 2 n − 2 and λ < 2 n − 2 a n = 2 n − 2 2 n − F n = 4 − 2 n − 2 F n < 4 . Since F n < 2 n − 2 for all n ≥ 4 , the right-hand side approaches the maximum of 4 , as n → ∞ . Therefor the maximum integer value of λ is 3 .