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

A294634
Numbers k such that (754*10^k - 7)/9 is prime.
0
0, 2, 3, 5, 6, 9, 30, 38, 66, 110, 135, 168, 470, 477, 654, 1635, 1875, 2823, 12162, 23984, 32859, 33609, 34814, 39162, 58748, 82250, 161816
OFFSET
1,2
COMMENTS
Numbers k such that the digits 83 followed by k occurrences of the digit 7 is prime (see Example section).
a(28) > 2*10^5.
EXAMPLE
2 is in this sequence because (754*10^2 - 7)/9 = 8377 is prime.
Initial terms and associated primes:
a(1) = 0, 83;
a(2) = 2, 8377;
a(3) = 3, 83777;
a(4) = 4, 8377777;
a(5) = 6, 83777777777; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(754*10^# - 7)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 05 2017
EXTENSIONS
a(27) from Robert Price, May 02 2020
STATUS
approved