OFFSET
1,1
COMMENTS
Corresponding primes are: 11, 13, 29, 53, 239, 593, 65843, 1514213, 5221133, ...
a(43) > 10^5.
Terms > 33 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!4+8.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
13!4 + 2^3 = 13*9*5*1 + 8 = 593 is prime, so 13 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 4] + 2^3] &]
Select[Range[100000], PrimeQ[Times@@Range[#, 1, -4]+8]&] (* Harvey P. Dale, Oct 29 2022 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Aug 22 2017
EXTENSIONS
a(41)-a(42) from Robert Price, Sep 25 2019
STATUS
approved