Find the second smallest prime such that is an integer.
Tips: the smallest such prime is
Hoping accuracy !
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.
2 p − 1 is a square number.
If 2 p − 1 = 1 , p = 3 which is our smallest solution.
If 2 p − 1 = 4 , p = 9 which is not a prime.
If 2 p − 1 = 9 , p = 1 9 which is our second smallest solution.
So the answer is 1 9 .
Easy?