A108312 Integers n such that 10^n + 27 is prime.
1, 2, 83, 167, 242, 14081, 65537
Offset: 1
Examples
For n=2 we have 10^2 + 27 = 100 + 27 = 127, which is prime.
Links
Programs
-
Mathematica
Do[ If[ PrimeQ[10^n + 27], Print[n]], {n, 3000}] (* Robert G. Wilson v, Jul 01 2005 *)
Extensions
a(6)=14081 from Robert Price, Mar 22 2010
Edited by Ray Chandler, Dec 23 2010
a(7)=65537 from Robert Price, Jan 29 2011
Comments