A279646 Numbers k such that k!6 - 3 is prime, where k!6 is the sextuple factorial number (A085158).
5, 6, 8, 10, 68, 82, 92, 98, 118, 286, 796, 878, 1360, 1502, 1516, 1568, 1646, 3628, 3716, 4048, 7982, 12776, 18070, 20594, 29902, 39632, 52988, 53864, 55610, 67448, 85402, 89762
Offset: 1
Examples
10!6 - 3 = 10*4 - 3 = 37 is prime, so 10 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6-3.
- 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[4, 50000], PrimeQ[MultiFactorial[#, 6] - 3] &]
Extensions
a(27)-a(32) from Robert Price, Aug 03 2018
Comments