A289689 Numbers k such that k!6 - 16 is prime, where k!6 is the sextuple factorial number (A085158).
9, 15, 17, 65, 129, 135, 209, 225, 327, 357, 423, 1061, 1143, 3629, 4937, 6713, 33123, 79185, 88323, 89933
Offset: 1
Examples
17!6 - 16 = 17*11*5 - 16 = 919 is prime, so 17 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6-16.
- 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] - 16] &]
Extensions
a(18)-a(20) from Robert Price, Aug 03 2018
Comments