login
A286435
Numbers k such that (56*10^k - 47)/9 is prime.
0
2, 3, 6, 9, 27, 48, 60, 74, 161, 242, 269, 518, 1092, 1220, 1883, 2618, 3266, 6699, 8855, 17022, 17454, 101222
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 2 followed by the digits 17 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
3 is in this sequence because (56*10^3 - 47)/9 = 6217 is prime.
Initial terms and associated primes:
a(1) = 2, 617;
a(2) = 3, 6217;
a(3) = 6, 6222217;
a(4) = 9, 6222222217;
a(5) = 27, 6222222222222222222222222217; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(56*10^# - 47)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, May 09 2017
EXTENSIONS
a(22) from Robert Price, Feb 25 2019
STATUS
approved