OFFSET
1,1
COMMENTS
a(44) > 10^5.
The first 5 primes associated with this sequence are: 3209, 9689, 65579, 208589, 1513949.
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] - 256; x > 0 && PrimeQ[x]) &]
Select[Range[10, 1600], PrimeQ[Times@@Range[#, 1, -4]-256]&] (* The program generates the first 27 terms of the sequence. To generate more, increase the second Range constant but the program may take a long time to run. *) (* Harvey P. Dale, Aug 01 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Nov 07 2019
STATUS
approved