a n = a n − 1 a n − 2 a n − 3 a n − 4 f ( n ) !
The recurrence relation above has the initial condition of a 0 = a 1 = a 2 = a 3 = 1 . If f ( n ) = n − 2 for n ≥ 2 , find the largest value of n such that a n = f ( n ) .
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.
n a n 0 1 1 1 2 1 3 1 4 2 5 3 6 4 7 5 8 6 9 1 4 1 0 2 4 1 1 3 6 1 2 5 0 1 3 6 6 1 4 1 6 8 1 5 3 1 2 1 6 5 0 4 1 7 7 5 0 1 8 1 0 5 6 1 9 2 8 5 6
Observing the terms early in the sequence, we note that a n = ( n − 2 ) a n − 5 = a n − 5 f ( n ) . Let us prove the claim for all n ≥ 5 by induction. We first note that a 4 = 1 ⋅ 1 ⋅ 1 ⋅ 1 2 ! = 2 .
The proof
For n = 5 , as given a 5 = 2 ⋅ 1 ⋅ 1 ⋅ 1 3 ! = 3 . By the claim a 5 = ( 5 − 2 ) a 0 = 3 . Therefore, the claim is true for n = 5 .
Assuming the claim is true for n , for n + 1 , we have:
a n + 1 = a n a n − 1 a n − 2 a n − 3 ( n − 1 ) ! = a n a n − 1 a n − 2 a n − 3 a n − 4 ( n − 1 ) ( n − 2 ) ! a n − 4 = ( n − 1 ) a n − 4 = ( n + 1 − 2 ) a n + 1 − 5
Therefore, the claim is true for n + 1 and hence true for all n ≥ 5 .
Now, we have a n = a n − 5 f ( n ) , for a n = f ( n ) , a n − 5 must be equal to 1, the latest term is a 3 = 1 , that is n = 8 .
Problem Loading...
Note Loading...
Set Loading...
a n = f ( n ) = n − 2
Hence equation translates to:
n − 2 = ( n − 3 ) ( n − 4 ) ( n − 5 ) ( n − 6 ) ( n − 2 ) !
⟹ n − 2 = ( n − 3 ) ( n − 4 ) ( n − 5 ) ( n − 6 ) ( n − 2 ) ( n − 3 ) ( n − 4 ) ( n − 5 ) ( n − 6 ) ( n − 7 ) !
⟹ ( n − 7 ) ! = 1
This has two solutions n = 7 , 8 larger of which is 8