A329167 Numbers k such that k![4] - 32 is prime, where k![4] = A007662(k) = quadruple factorial.
9, 11, 15, 25, 29, 47, 55, 67, 119, 171, 331, 475, 549, 819, 1151, 1543, 2303, 2749, 3303, 3649, 4065, 4261, 4497, 4873, 9105, 12749, 18677, 20121, 22459, 32489, 35765, 46971, 75843, 79585, 79731
Offset: 1
Keywords
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
Programs
-
Mathematica
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]]; Select[Range[1000], (x = MultiFactorial[#, 4] - 32; x > 0 && PrimeQ[x]) &]
Comments