A288445 Numbers k such that k!6 + 18 is prime, where k!6 is the sextuple factorial number (A085158 ).
1, 5, 11, 13, 17, 19, 23, 31, 37, 41, 49, 83, 115, 161, 205, 617, 683, 769, 799, 1117, 1151, 1685, 1697, 1951, 2173, 3619, 3647, 6229, 6463, 6613, 9827, 12985, 15721, 16933, 22579, 25181, 38869, 48755
Offset: 1
Examples
11!6 + 18 = 11*5 + 18 = 73 is prime, so 11 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+18.
- 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] + 18] &]
Comments