login
A293913
Numbers k such that (436*10^k - 13)/9 is prime.
0
0, 5, 8, 9, 12, 39, 68, 78, 98, 200, 218, 359, 1064, 1127, 1355, 2868, 4940, 7236, 12050, 24708, 47214, 52683
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digits 48 followed by k-1 occurrences of the digit 4 followed by the digit 3 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
5 is in this sequence because (436*10^5 - 13)/9 = 4844443 is prime.
Initial terms and associated primes:
a(1) = 0, 47;
a(2) = 5, 4844443;
a(3) = 8, 4844444443;
a(4) = 9, 48444444443;
a(5) = 12, 48444444444443; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(436*10^# - 13)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 19 2017
STATUS
approved