A288446 Numbers k such that k!6 + 24 is prime, where k!6 is the sextuple factorial number (A085158 ).
5, 7, 11, 19, 23, 29, 53, 67, 71, 79, 109, 121, 275, 707, 725, 1345, 1961, 2221, 2477, 2765, 5557, 5779, 7423, 11587, 22495, 25063, 28795, 43783
Offset: 1
Examples
11!6 + 24 = 11*5 + 24 = 79 is prime, so 11 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+24.
- 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] + 24] &]
Comments