login
A295393
Numbers k such that 5*10^k + 23 is prime.
0
1, 2, 3, 4, 10, 11, 15, 43, 51, 110, 164, 303, 824, 3160, 4994, 8596, 11717, 22370, 22600, 65509, 117205, 149907
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 5 followed by k-2 occurrences of the digit 0 followed by the digits 23 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
2 is in this sequence because 5*10^2 + 23 = 523 is prime.
Initial terms and associated primes:
a(1) = 1, 73;
a(2) = 2, 523;
a(3) = 3, 5023;
a(4) = 4, 50023;
a(5) = 10, 50000000023; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[5*10^# + 23] &]
PROG
(PARI) isok(k) = isprime(5*10^k + 23); \\ Michel Marcus, Nov 22 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 21 2017
EXTENSIONS
a(21)-a(22) from Robert Price, Mar 18 2019
STATUS
approved