A289685 Numbers k such that k!6 - 6 is prime, where k!6 is the sextuple factorial number (A085158).
17, 19, 23, 31, 37, 47, 65, 151, 157, 251, 283, 371, 391, 635, 779, 799, 1517, 1799, 3355, 24619, 40375, 40793, 53135, 79427
Offset: 1
Examples
17!6 - 6 = 17*11*5 - 6 = 929 is prime, so 17 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[6, 50000], PrimeQ[MultiFactorial[#, 6] - 6] &]
Extensions
a(23)-a(24) from Robert Price, Aug 03 2018
Comments