A289688 Numbers k such that k!6 - 12 is prime, where k!6 is the sextuple factorial number (A085158).
11, 13, 23, 29, 35, 37, 49, 95, 97, 101, 113, 133, 137, 361, 401, 701, 1027, 1331, 2087, 2743, 7781, 9391, 12787, 12797, 16123, 17317, 21701, 49657, 64661, 72149, 86413
Offset: 1
Examples
13!6 - 12 = 13*7*1 - 12 = 79 is prime, so 13 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6-12.
- 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[8, 50000], PrimeQ[MultiFactorial[#, 6] - 12] &]
Extensions
a(29)-a(31) from Robert Price, Aug 03 2018
Comments