OFFSET
1,3
COMMENTS
For k > 2, numbers k such that the digit 2 followed by k-3 occurrences of the digit 6 followed by the digits 83 is prime (see Example section).
a(41) > 3*10^5.
LINKS
Makoto Kamada, Search for 26w83.
EXAMPLE
3 is in this sequence because (8*10^3 + 49)/3 = 2683 is prime.
Initial terms and associated primes:
a(1) = 0, 19;
a(2) = 1, 43;
a(3) = 2, 283;
a(4) = 3, 2683;
a(5) = 4, 26683;
a(6) = 5, 266683, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(8*10^# + 49)/3] &]
PROG
(PARI) is(n)=isprime((8*10^n + 49)/3) \\ Charles R Greathouse IV, Feb 16 2017
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Mar 25 2016
EXTENSIONS
a(38)-a(40) from Robert Price, May 23 2020
STATUS
approved