Find the number of pairs of positive integers that satisfy the equation .
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 roughly stated solution is presented here.
if ( n , k ) is a valid pair, then
( n + 1 ) k ≡ 1 ( m o d t ) , ∀ 2 ≤ t ≤ n ( ∗ )
immediately one notices that n + 1 = p should be a prime, otherwise there would be a 2 ≤ t ≤ n s.t. g c d ( t , n + 1 ) = 1 and consequently ∗ cannot hold true for that particular t .
then we realise k ∣ l c m ( { ϕ ( t ) } t = 2 t = n ) = 1 or k ∣ l c m ( { ϕ ( t ) } t = 3 t = n ) = 2 , when we assume p k ≡ 1 ( m o d 2 ) . Therefore, possibilities are k = 1 , 2 .
with k = 1 , we have ( n + 1 ) − 1 = n ! ⟹ n = n ! ⟹ n = 1 , 2 .
When k = 2 , we have
p 2 ≡ 1 ( m o d t ) ∀ 2 ≤ t ≤ p − 1 ⟹ t ∣ ( p − 1 ) ( p + 1 ) ∀ 2 ≤ t ≤
according to Bertrand's postulation, there should be a prime q such that
2 p + 1 < q < p
when p ≤ 5 .Therefore q ∤ ( p − 1 ) ( p + 1 ) and, for this q , equation ∗ would not be satisfied. the only primes p , for which there would be no such q , are 2 , 3 , 5 . One can plug the primes, together with k = 2 in ∗ and easily check if they constitute a valid pair.