For a positive integer N , define A N to be the smallest positive integer such that
( 1 N ) 1 1 , ( 2 N ) 2 1 , ( 3 N ) 3 1 , … , ( A N N ) A N 1
are not all integers. Find max A N as N ranges over all positive integers.
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.
Notice that A N ≤ 4 ; if ( 2 N ) 2 1 and ( 4 N ) 4 1 were both integers , then 2 N and 4 N would both be perfect squares, which is impossible, because 2 = 4 N 2 N is not the perfect square of a rational.
An example for A N = 4 would be N = 6 4 8 , as 1 N = 6 4 8 , ( ( 2 N ) 2 1 = 1 8 and ( 3 N ) 3 1 = 6 .
Problem Loading...
Note Loading...
Set Loading...
Observe that for N = 2 3 ⋅ 3 4 , we have A N = 4 :
Thus, A N ≥ 4 for this value of N .
Now, we will show A N ≤ 4 for all N . To do this, suppose for the sake contradiction that it isn't; then, for some N , we have ( N / i ) 1 / i to be an integer for all i = 1 , 2 , 3 , 4 ; in particular, ( N / 2 ) 1 / 2 , ( N / 4 ) 1 / 4 are both integers.
Consider the largest power of 2 that divides N ; suppose this is 2 k .
Because ( N / 2 ) 1 / 2 is an integer, this means ( 2 k / 2 ) 1 / 2 is also an integer. Thus 2 2 k − 1 is an integer, so k is odd.
Because ( N / 4 ) 1 / 4 is an integer, this means ( 2 k / 4 ) 1 / 4 is also an integer. Thus 2 4 k − 2 is an integer, so k ≡ 2 ( m o d 4 ) . But this means k is even, contradiction.
So no N has A N > 4 . This proves that A N ≤ 4 for all N , and so max A N = 4 .