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

A281111
Numbers k such that 97*10^k - 3 is prime.
0
1, 2, 3, 8, 9, 13, 30, 31, 33, 35, 85, 97, 105, 129, 242, 253, 295, 2810, 2991, 3479, 7902, 16867, 21744, 38687, 51027, 72522, 84033, 91205, 161247, 190295
OFFSET
1,2
COMMENTS
For k > 0, numbers k such that the digits 96 followed by k-1 occurrences of the digit 9 followed by the digit 7 is prime (see Example section).
a(31) > 3*10^5.
EXAMPLE
3 is in this sequence because 97*10^3 - 3 = 96997 is prime.
Initial terms and associated primes:
a(1) = 1, 967;
a(2) = 2, 9697;
a(3) = 3, 96997;
a(4) = 8, 9699999997;
a(5) = 9, 96999999997; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[97*10^# - 3] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jan 14 2017
EXTENSIONS
a(29)-a(30) from Robert Price, May 26 2020
STATUS
approved