OFFSET
1,1
COMMENTS
a(42) > 10^5.
The first 5 primes associated with this sequence are: 2441, 64811, 207821, 5220101, 40882511.
LINKS
C. K. Caldwell, The Prime Glossary, multifactorial prime
C. Caldwell and H. Dubner (Eds): The top ten prime numbers: from the unpublished collections of R. Ondrejka (May 2001), Table 21 F, p. 75.
Ken Davis, Status of Search for Multifactorial Primes.
Joe McLean, Interesting Sources of Probable Primes
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[1000], (x = MultiFactorial[#, 4] - 1024; x > 0 && PrimeQ[x]) &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Nov 07 2019
STATUS
approved