A287956 Numbers k such that k!6 + 6 is prime, where k!6 is the sextuple factorial number (A085158 ).
1, 5, 7, 11, 13, 17, 37, 43, 55, 107, 139, 149, 157, 211, 223, 343, 373, 409, 523, 12049, 16457, 17143, 17543, 18391, 25829, 25945, 31307, 34601, 41687
Offset: 1
Examples
11!6 + 6 = 11*5 + 6 = 61 is prime, so 11 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+6.
- 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] + 6] &]
Comments