A165508 Numbers k such that 10^k + 111 is prime.
2, 4, 184, 460, 784, 3248, 5194, 92386, 156428, 228208
Offset: 1
Examples
As 10111 = 10^4 + 111 is a prime, 4 is a term.
Programs
-
Mathematica
Select[Range[5200], PrimeQ[10^# + 111] &] (* G. C. Greubel, Oct 21 2018 *)
-
PARI
is(k)=ispseudoprime(10^k+111) \\ Charles R Greathouse IV, Jun 13 2017
Extensions
a(8) from Jeppe Stig Nielsen, Feb 10 2023
a(9)-a(10) from Boyan Hu, Oct 23 2024
Comments