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

A295826
Numbers k such that (202*10^k - 13)/9 is prime.
0
1, 2, 4, 20, 22, 34, 35, 41, 185, 547, 644, 713, 1489, 1885, 3211, 3257, 3625, 6733, 47732, 165569, 172940, 195383
OFFSET
1,2
COMMENTS
For k > 0, numbers k such that the digits 22 followed by k-1 occurrences of the digit 4 followed by the digit 3 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
2 is in this sequence because (202*10^2 - 13)/9 = 2243 is prime.
Initial terms and associated primes:
a(1) = 1, 223;
a(2) = 2, 2243;
a(3) = 4, 224443;
a(4) = 20, 2244444444444444444443;
a(5) = 22, 224444444444444444444443; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(202*10^# - 13)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 28 2017
EXTENSIONS
a(20)-a(22) from Robert Price, Jan 08 2020
STATUS
approved