What is the smallest prime number that divides 2 1 1 1 + 3 1 1 1 ?
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.
Nice way of solving this exercise.
The last digits of 2 n repeat in the cycle 2 , 4 , 8 , 6
The last digits of 3 n repeat in the cycle 3 , 9 , 7 , 1
So the last digits of 2 n + 3 n repeat in the cycle 5 , 3 , 5 , 7
Notice that the last digits of 2 n + 3 n is 5 whenever n is odd.
Alternatively, a n + b n is divisible by a + b for every odd n .
So 2 1 1 1 + 3 1 1 1 is not divisible by 2 or 3 .
So the smallest prime factor of 2 1 1 1 + 3 1 1 1 is 5 .
Problem Loading...
Note Loading...
Set Loading...
For odd natural number n , we have a n + b n = ( a + b ) ( a n − 1 − a n − 2 b + a n − 3 b 2 + . . . + a 2 b n − 3 − a b n − 2 + b n − 1 ) , therefore, a n + b n is divisible by a + b for odd n . Therefore, 2 1 1 1 + 3 1 1 1 is divisible by 2 + 3 = 5 , which is a prime.