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

A294230
Numbers k such that (55*10^k + 377)/9 is prime.
0
1, 2, 4, 20, 40, 61, 62, 82, 169, 172, 214, 874, 1520, 1652, 2185, 3221, 4012, 4669, 13165, 18922, 91142, 106222
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 1 followed by the digits 53 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
2 is in this sequence because (55*10^2 + 377)/9 = 653 is prime.
Initial terms and associated primes:
a(1) = 1, 103;
a(2) = 2, 653;
a(3) = 4, 61153;
a(4) = 20, 611111111111111111153;
a(5) = 40, 61111111111111111111111111111111111111153; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(55*10^# + 377)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 25 2017
EXTENSIONS
a(22) from Robert Price, Feb 27 2019
STATUS
approved