login
A294631
Numbers k such that (59*10^k - 77)/9 is prime.
0
2, 3, 5, 6, 9, 14, 21, 29, 30, 32, 39, 59, 69, 113, 410, 13484, 15525, 16796, 22064, 37694, 38103, 73217
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 5 followed by the digits 47 is prime (see Example section).
a(23) > 2*10^5.
All terms == 0 or 2 (mod 3). - Robert Israel, May 30 2019
EXAMPLE
2 is in this sequence because (59*10^2 - 77)/9 = 647 is prime.
Initial terms and associated primes:
a(1) = 2, 647;
a(2) = 3, 6547;
a(3) = 5, 655547;
a(4) = 6, 6555547;
a(5) = 9, 6555555547; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[(59*10^# - 77)/9] &]
PROG
(PARI) is(n) = ispseudoprime((59*10^n - 77)/9) \\ Felix Fröhlich, May 30 2019
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 05 2017
STATUS
approved