OFFSET
1,1
COMMENTS
Corresponding primes are: 7, 43, 887, 43177, 21827527, 894930527, 1714167050058087577, ...
a(35) > 10^5.
Terms > 41 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6-48.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
13!6 - 48 = 13*7*1 - 48 = 43 is prime, so 13 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[11, 50000], PrimeQ[MultiFactorial[#, 6] - 48] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(31)-a(34) from Robert Price, Aug 04 2018
STATUS
approved