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

A294938
Numbers k such that (79*10^k - 1)/3 is prime.
0
1, 2, 5, 11, 23, 38, 59, 77, 79, 413, 919, 1079, 1343, 3194, 5168, 6266, 12710, 18711, 47185, 82347, 170901, 180710
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digits 26 followed by k occurrences of the digit 3 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
2 is in this sequence because (79*10^2 - 1)/3 = 2633 is prime.
Initial terms and associated primes:
a(1) = 1, 263;
a(2) = 2, 2633;
a(3) = 5, 2633333;
a(4) = 11, 2633333333333;
a(5) = 23, 2633333333333333333333333; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(79*10^# - 1)/3] &]
PROG
(PARI) isok(k) = isprime((79*10^k - 1)/3); \\ Michel Marcus, Nov 12 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 11 2017
EXTENSIONS
a(21)-a(22) from Robert Price, Jan 31 2020
STATUS
approved