OFFSET
1,1
COMMENTS
Corresponding primes are: 929, 1723, 21499, 1339969, 49579069, 42061737019, ...
a(25) > 10^5.
Terms > 65 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6-6.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
17!6 - 6 = 17*11*5 - 6 = 929 is prime, so 17 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[6, 50000], PrimeQ[MultiFactorial[#, 6] - 6] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(23)-a(24) from Robert Price, Aug 03 2018
STATUS
approved