OFFSET
1,1
COMMENTS
Corresponding primes are: 2, 3, 13, 37, 73569236156415997, ...
a(33) > 10^5.
Terms > 10 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6-3.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
10!6 - 3 = 10*4 - 3 = 37 is prime, so 10 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[4, 50000], PrimeQ[MultiFactorial[#, 6] - 3] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 07 2017
EXTENSIONS
a(27)-a(32) from Robert Price, Aug 03 2018
STATUS
approved