Given a sequence called including terms ( from to ), which can be described as
Given another sequence called including terms, which have a property that
Given that the largest term in is . Find the value of .
Note : is denoted as the greatest common divisor of and .
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.
G C D ( A n , A n + 1 ) = G C D ( 2 0 + n 2 , 2 0 + n 2 + 2 n + 1 ) =
= G C D ( 2 0 + n 2 , 2 n + 1 )
Since 2 n + 1 is odd, for all z , ∈ Z , m ∈ N we have G C D ( z , 2 n + 1 ) = G C D ( 2 m z , 2 n + 1 )
So
G C D ( A n , A n + 1 ) = G C D ( 4 ( 2 0 + n 2 ) , 2 n + 1 )
= G C D ( 8 0 + 4 n 2 , 2 n + 1 ) = G C D ( 8 1 + 4 n 2 − 1 , 2 n + 1 ) =
= G C D ( 8 1 + ( 2 n + 1 ) ( 2 n − 1 ) , 2 n + 1 ) = G C D ( 8 1 , 2 n + 1 ) ≤ 8 1 .
For n = 4 0 (and assuming that 1 ≤ n ≤ 5 0 as I think the intention of the writer of the problem meant) we have G C D ( 8 1 , 8 1 ) = 8 1 so it reaches the max value possible.
So B = 8 1 and x = 4 0 and the answer is 1 2 1 = 1 1 .