A288152 Numbers k such that k!6 + 8 is prime, where k!6 is the sextuple factorial number (A085158 ).
3, 5, 21, 29, 41, 65, 243, 305, 389, 509, 819, 1653, 7493, 8613, 8619, 10257, 11829, 12977, 15651, 24341, 29367, 31629, 40173
Offset: 1
Examples
21!6 + 8 = 21*15*9*3 + 8 = 8513 is prime, so 21 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+8.
- 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] + 8] &]
Comments