OFFSET
1,3
COMMENTS
For k > 1, numbers k such that the digit 4 followed by k-2 occurrences of the digit 6 followed by the digits 91 is prime (see Example section).
a(39) > 2*10^5.
LINKS
Makoto Kamada, Search for 46w91.
EXAMPLE
3 is in this sequence because (14*10^3 + 73)/3 = 4691 is prime.
Initial terms and associated primes:
a(1) = 0, 29;
a(2) = 1, 71;
a(3) = 2, 491;
a(4) = 3, 4691;
a(5) = 4, 46691;
a(6) = 6, 4666691, etc.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(14*10^# + 73)/3] &]
PROG
(PARI) is(n)=ispseudoprime((14*10^n + 73)/3) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Apr 05 2016
EXTENSIONS
a(36)-a(38) from Robert Price, Dec 26 2018
STATUS
approved