A287844 Numbers k such that k!6 + 3 is prime, where k!6 is the sextuple factorial number (A085158 ).
2, 4, 8, 10, 14, 16, 20, 22, 26, 34, 70, 164, 346, 398, 902, 938, 1426, 1682, 1928, 3596, 3796, 15058, 25654, 37330
Offset: 1
Examples
10!6 + 3 = 10*4 + 3 = 43 is prime, so 10 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+3.
- Joe McLean, Interesting Sources of Probable Primes
- OpenPFGW Project, Primality Tester
Programs
-
Mathematica
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]]; Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 6] + 3] &] Select[Range[3800],PrimeQ[Times@@Range[#,1,-6]+3]&] (* The program generates the first 21 terms of the sequence. *) (* Harvey P. Dale, May 23 2025 *)
Comments