A288450 Numbers k such that k!6 + 48 is prime, where k!6 is the sextuple factorial number (A085158 ).
5, 11, 13, 17, 19, 35, 43, 49, 67, 71, 73, 85, 103, 263, 293, 497, 529, 599, 905, 971, 1685, 2927, 3635, 3847, 4535, 8501, 38777
Offset: 1
Examples
11!6 + 48 = 11*5 + 48 = 103 is prime, so 11 is in the sequence.
Links
- Henri & Renaud Lifchitz, PRP Records. Search for n!6+48.
- 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[0, 50000], PrimeQ[MultiFactorial[#, 6] + 48] &]
Comments