A sequence of pairs of integers ( x 0 , y 0 ) , ( x 1 , y 1 ) , ( x 2 , y 2 ) , . . . is defined, starting from some initial pair ( x 0 , y 0 ) , by the following formulas: { x k + 1 = x k 4 y k − x k 3 y k 2 y k + 1 = x k 2 y k 3 − x k y k 4 Find the number of primes p < 1 0 0 0 such that x 1 0 is a multiple of p for all initial pairs ( x 0 , y 0 ) .
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.
Problem Loading...
Note Loading...
Set Loading...
The recursive formulas, defining the pairs, make sense modulo every prime p . Note that if x i is not zero modulo p , and x i is not congruent to y i modulo p , then x i + 1 y i + 1 = ( x i y i ) 2 If x i ≡ y i ( m o d p ) then x i + 1 ≡ y i + 1 ≡ 0 ( m o d p ) and all further numbers are zero modulo p .
Recall that the multiplicative group of residues modulo any prime p is cyclic of order p − 1 . If p − 1 = 2 k for some k , then after no more than k iterations, starting from any x 0 and y 0 not divisible by p , we get x i y i ≡ 1 ( m o d p ) , so x i + 1 ≡ y i + 1 ≡ 0 ( m o d p ) and all subsequent x n and y n are zero modulo p . On the other hand, if p − 1 is not a power of 2 , then one can find x 0 y 0 so that its order in the multiplicative group modulo p is not a power of 2 , and then x n and y n will never be zero modulo p .
There are 5 primes less than 1 0 0 0 of the form p = 2 k + 1 : 2 , 3 , 5 , 1 7 , 2 5 7 . For each of them k ≤ 8 , so x 1 0 will be divisible by p for any x 0 and y 0 . Thus, the answer is 5 .