[go: up one dir, main page]

login
A282536
Numbers k such that (26*10^k + 49)/3 is prime.
0
1, 2, 5, 6, 18, 25, 34, 67, 73, 98, 287, 380, 544, 748, 911, 947, 978, 2480, 3017, 7951, 13081, 17665, 17798, 34857, 43960, 100566
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 8 followed by k-2 occurrences of the digit 6 followed by the digits 83 is prime (see Example section).
a(27) > 3*10^5.
EXAMPLE
2 is in this sequence because (26*10^2 + 49)/3 = 883 is prime.
Initial terms and associated primes:
a(1) = 1, 103;
a(2) = 2, 883;
a(3) = 5, 866683;
a(4) = 6, 8666683;
a(5) = 18, 8666666666666666683; etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(26*10^# + 49)/3] &]
PROG
(PARI) isok(k) = isprime((26*10^k + 49)/3); \\ Michel Marcus, Feb 18 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Feb 17 2017
EXTENSIONS
a(26) from Robert Price, Jul 31 2019
STATUS
approved