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

A295032
Numbers k such that 12*10^k - 7 is prime.
0
0, 1, 2, 4, 5, 8, 11, 21, 25, 105, 191, 305, 463, 704, 1320, 1404, 1580, 1675, 2215, 3475, 6323, 10560, 28817, 30356, 98198
OFFSET
1,3
COMMENTS
For k > 1, numbers k such that the digits 11 followed by k-1 occurrences of the digit 9 followed by the digit 3 is prime (see Example section).
a(26) > 3*10^5.
EXAMPLE
2 is in this sequence because 12*10^2 - 7 = 1193 is prime.
Initial terms and associated primes:
a(1) = 0, 5;
a(2) = 1, 113;
a(3) = 2, 1193;
a(4) = 4, 119993;
a(5) = 5, 1199993; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[12*10^# - 7 ] &]
PROG
(PARI) isok(k) = isprime(12*10^k - 7); \\ Michel Marcus, Nov 13 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 12 2017
STATUS
approved