login
A294914
Numbers k such that (14*10^k - 131)/9 is prime.
0
4, 7, 10, 27, 40, 43, 55, 61, 63, 117, 259, 417, 427, 561, 568, 889, 1335, 26625, 36613, 45261, 47205
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(22) > 2*10^5.
EXAMPLE
4 is in this sequence because (14*10^4 - 131)/9 = 15541 is prime.
Initial terms and associated primes:
a(1) = 4, 15541;
a(2) = 7, 15555541;
a(3) = 10, 15555555541;
a(4) = 27, 1555555555555555555555555541;
a(5) = 40, 15555555555555555555555555555555555555541; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[(14*10^# - 131)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 10 2017
STATUS
approved