login
A287296
Numbers k such that 8*10^k + 51 is prime.
0
0, 1, 4, 6, 9, 10, 16, 31, 33, 93, 289, 304, 921, 1183, 3946, 4506, 4978, 5481, 7114, 13512, 14703, 14823, 16851, 26662, 77377, 82417, 95316, 98982, 102000, 139920
OFFSET
1,3
COMMENTS
For k > 1, numbers k such that the digit 8 followed by k-2 occurrences of the digit 0 followed by the digits 51 is prime (see Example section).
a(31) > 2*10^5.
EXAMPLE
4 is in this sequence because 8*10^4 + 51 = 80051 is prime.
Initial terms and associated primes:
a(1) = 0, 59;
a(2) = 1, 131;
a(3) = 4, 80051;
a(4) = 6, 8000051;
a(5) = 9, 8000000051; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[8*10^# + 51] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, May 22 2017
EXTENSIONS
a(29)-a(30) from Robert Price, Aug 18 2019
Terms reordered into ascending order by Robert Price, Apr 03 2022
STATUS
approved