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

A276673
Numbers k such that 94*10^k - 3 is prime.
0
1, 2, 3, 4, 8, 19, 23, 25, 28, 65, 171, 183, 187, 295, 351, 471, 561, 634, 710, 1726, 3947, 4247, 6009, 11065, 13567, 94493, 147871, 182291
OFFSET
1,2
COMMENTS
For k > 0, numbers k such that the digits 93 followed by k-1 occurrences of the digit 9 followed by the digit 7 is prime (see Example section).
a(29) > 2*10^5.
EXAMPLE
3 is in this sequence because 94*10^n - 3 = 93997 is prime.
Initial terms and associated primes:
a(1) = 1, 937;
a(2) = 2, 9397;
a(3) = 3, 93997;
a(4) = 4, 939997;
a(5) = 8, 9399999997, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[94*10^# - 3] &]
PROG
(PARI) is(n)=ispseudoprime(94*10^n - 3) \\ Charles R Greathouse IV, Jun 13 2017
KEYWORD
nonn,more
AUTHOR
Robert Price, Nov 16 2016
EXTENSIONS
a(27)-a(28) from Robert Price, May 03 2020
STATUS
approved