login
A293856
Numbers k such that (32*10^k + 319)/9 is prime.
0
1, 4, 5, 7, 8, 10, 14, 20, 44, 76, 88, 110, 121, 1469, 1535, 5030, 16391, 19592, 25265, 25819, 54458, 68320
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 3 followed by k-2 occurrences of the digit 5 followed by the digits 91 is prime (see Example section).
a(23) > 2*10^5.
EXAMPLE
4 is in this sequence because (32*10^4 + 319)/9 = 35591 is prime.
Initial terms and associated primes:
a(1) = 1, 71;
a(2) = 4, 35591;
a(3) = 5, 355591;
a(4) = 7, 35555591;
a(5) = 8, 355555591; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(32*10^# + 319)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 17 2017
STATUS
approved