OFFSET
1,1
COMMENTS
k!!!!!! = k*(k-6)*(k-12)*(k-18)*...
The search for multifactorial primes started by Ray Ballinger is now continued by a team of volunteers on the website of Ken Davis (see link).
LINKS
Ray Ballinger, Status of Search for Multifactorial Primes.
Ken Davis, Status of Search for Multifactorial Primes.
Ken Davis, Results for n!6-1..
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 1000], PrimeQ[MultiFactorial[#, 6] - 1] & ] (* Robert Price, Apr 19 2019 *)
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
EXTENSIONS
Edited and extended by Hugo Pfoertner, Jun 23 2003
Corrected and extended by Herman Jamke (hermanjamke(AT)fastmail.fm), Jan 03 2008
STATUS
approved