login
A293282
Numbers k such that (67*10^k - 7)/3 is prime.
0
4, 5, 9, 20, 21, 23, 39, 45, 63, 89, 94, 826, 994, 1054, 2886, 4829, 5880, 7928, 17544, 47277, 93226, 127413
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digits 22 followed by k-2 occurrences of the digit 3 followed by the digit 1 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
5 is in this sequence because (67*10^5 - 7)/3 = 2233331 is prime.
Initial terms and associated primes:
a(1) = 4, 223331;
a(2) = 5, 2233331;
a(3) = 9, 22333333331;
a(4) = 20, 2233333333333333333331;
a(5) = 21, 22333333333333333333331; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(67*10^# - 7)/3] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 06 2017
EXTENSIONS
a(22) from Robert Price, Jan 01 2020
STATUS
approved