[go: up one dir, main page]

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

A294910
Numbers k such that (109*10^k + 17)/9 is prime.
0
2, 3, 9, 23, 27, 32, 50, 80, 107, 140, 992, 1607, 2975, 4007, 4605, 12392, 15159, 16628, 37419
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digits 12 followed by k-1 occurrences of the digit 1 followed by the digit 3 is prime (see Example section).
a(20) > 2*10^5.
EXAMPLE
2 is in this sequence because (109*10^2 + 17)/9 = 1213 is prime.
Initial terms and associated primes:
a(1) = 2, 1213;
a(2) = 3, 12113;
a(3) = 9, 12111111113;
a(4) = 23, 1211111111111111111111113;
a(5) = 27, 12111111111111111111111111113; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(109*10^# + 17)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 10 2017
STATUS
approved