[go: up one dir, main page]

login
A281645
Numbers k such that 4*10^k + 79 is prime.
0
0, 2, 3, 6, 8, 24, 36, 38, 45, 47, 57, 68, 69, 125, 672, 690, 999, 1199, 3512, 4013, 4208, 12042, 18492, 21945, 31158, 43430, 48548, 117123
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 4 followed by k-2 occurrences of the digit 0 followed by the digits 79 is prime (see Example section).
a(29) > 2*10^5.
EXAMPLE
3 is in this sequence because 4*10^3 + 79 = 4079 is prime.
Initial terms and associated primes:
a(1) = 0, 83;
a(2) = 2, 479;
a(3) = 3, 4079;
a(4) = 6, 4000079;
a(5) = 8, 400000079; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[4*10^# + 79] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jan 25 2017
EXTENSIONS
a(28) from Robert Price, Aug 10 2018
STATUS
approved