login
A294485
Numbers k such that (23*10^k + 19)/3 is prime.
0
1, 2, 3, 4, 9, 10, 11, 17, 95, 115, 499, 1048, 1557, 3392, 4841, 5174, 11427, 12044, 14984, 16747, 38936, 44492, 110290, 149655
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 7 followed by k-2 occurrences of the digit 6 followed by the digits 73 is prime (see Example section).
a(25) > 2*10^5.
EXAMPLE
2 is in this sequence because (23*10^2 + 19)/3 = 773 is prime.
Initial terms and associated primes:
a(1) = 1, 83;
a(2) = 2, 773;
a(3) = 3, 7673;
a(4) = 4, 76673;
a(5) = 9, 7666666673; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(23*10^# + 19)/3] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 31 2017
EXTENSIONS
a(23)-a(24) from Robert Price, Jul 27 2019
STATUS
approved