Find sum of all the primes of the form n n + 1 , where n is an integer, which are less than 1 0 1 9 .
If the answer is x , submit your answer as x + ( x m o d 3 3 ) .
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.
For n = 1 , n = 2 , we get primes. An odd n > 1 yields an even n n + 1 > 2 . So n must be even, i.e., n = 2 2 t ( 2 k + 1 ) . Since
2 2 t + 1 ∣ 2 2 t ( 2 k + 1 ) + 1
The exponent of n cannot have an odd divisor. Thus n = 2 2 t .
Therefore, we get x = 2 6 4 .
but u asked to submit the answer as x+(xmod33). so it should be 561
Log in to reply
Well, 264 is divisible by 33. So, 264mod33 =0. So the answer remains 264!!!
Problem Loading...
Note Loading...
Set Loading...
this number should be of form 2^(2^(2..........) +1 therefore answer is 2+5+257=264 (264=0(mod33))