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”).

A294131
Numbers k such that 5*10^k - 13 is prime.
0
1, 2, 3, 15, 20, 30, 90, 120, 125, 141, 326, 464, 491, 494, 540, 558, 822, 1103, 1463, 1638, 1898, 3332, 10671, 24842, 37412, 48855, 173904
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 4 followed by k-2 occurrences of the digit 9 followed by the digits 87 is prime (see Example section).
a(28) > 2*10^5.
EXAMPLE
2 is in this sequence because 5*10^2 - 13 = 487 is prime.
Initial terms and associated primes:
a(1) = 1, 37;
a(2) = 2, 487;
a(3) = 3, 4987;
a(4) = 15, 4999999999999987;
a(5) = 20, 499999999999999999987; etc.
MAPLE
select(k->isprime(5*10^k-13), [$1..1000]); # Muniru A Asiru, Jan 03 2019
MATHEMATICA
Select[Range[1, 100000], PrimeQ[5*10^# - 13] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 23 2017
EXTENSIONS
a(27) from Robert Price, Jan 03 2019
STATUS
approved