OFFSET
1,1
COMMENTS
Corresponding primes are: 19, 1693, 43189, 5745471106339, 350473737488839, ...
a(29) > 10^5.
Terms > 25 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6-36.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
19!6 - 36 = 19*13*7*1 - 36 = 1693 is prime, so 19 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[10, 50000], PrimeQ[MultiFactorial[#, 6] - 36] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(28) from Robert Price, Nov 28 2018
STATUS
approved