A289700 Numbers k such that k!6 - 36 is prime, where k!6 is the sextuple factorial number (A085158).
11, 19, 25, 55, 61, 113, 131, 133, 439, 529, 1079, 1621, 2609, 2825, 3997, 4235, 5081, 7319, 8365, 9023, 10273, 18095, 18199, 22625, 24535, 27229, 28883, 99877
Offset: 1
Examples
19!6 - 36 = 19*13*7*1 - 36 = 1693 is prime, so 19 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6-36.
- 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[10, 50000], PrimeQ[MultiFactorial[#, 6] - 36] &]
Extensions
a(28) from Robert Price, Nov 28 2018
Comments