A137848 Numbers k such that 10^k + 81 is prime.
2, 6, 8, 17, 22, 39, 89, 143, 167, 312, 334, 357, 414, 2254, 2694, 24094, 42081, 78632
Offset: 1
Keywords
Examples
10^2+81=100+81=181 is prime
Programs
-
Mathematica
Select[10^Range[25000] + 81, PrimeQ] (* Alonso del Arte, Dec 27 2010 *)
-
PARI
is(n)=ispseudoprime(10^n+81) \\ Charles R Greathouse IV, Jun 13 2017
Extensions
Added three terms: 2254,2694,24094. Robert Price, Oct 09 2010
a(17)=42081 from Robert Price, Dec 27 2010
a(18)=78632 from Robert Price, Mar 03 2011
Comments