A289547 Numbers k such that k!6 - 4 is prime, where k!6 is the sextuple factorial number (A085158 ).
6, 7, 9, 15, 21, 27, 29, 321, 327, 333, 567, 1025, 4263, 4365, 5175, 5655, 9221, 9327, 9681, 19685, 24777, 57869, 58737
Offset: 1
Examples
15!6 - 4 = 15*9*3 - 4 = 401 is prime, so 15 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6-4.
- 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] - 4] &]
Extensions
a(22)-a(23) from Robert Price, Aug 03 2018
Comments