login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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