A288154 Numbers k such that k!6 + 9 is prime, where k!6 is the sextuple factorial number (A085158 ).
2, 4, 14, 28, 34, 46, 50, 52, 86, 100, 106, 140, 166, 170, 208, 242, 338, 344, 412, 1360, 2024, 2948, 3650, 5608, 5744, 7618, 8410, 8834, 11872, 12514, 13636, 18742, 20846, 29750, 31312
Offset: 1
Examples
14!6 + 9 = 14*8*2 + 9 = 233 is prime, so 14 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+9.
- 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] + 9] &]
Comments