OFFSET
1,1
COMMENTS
Corresponding primes are: 37, 73, 21487, 43207, 21827557, 11510631741140058401857, ...
a(39) > 10^5.
Terms > 35 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6-18.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
13!6 - 18 = 13*7 - 18 = 73 is prime, so 13 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[9, 50000], PrimeQ[MultiFactorial[#, 6] - 18] &]
Select[Range[11, 60000], PrimeQ[Times@@Range[#, 1, -6]-18]&] (* Harvey P. Dale, Aug 10 2019 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jul 09 2017
EXTENSIONS
a(38) from Robert Price, Aug 03 2018
STATUS
approved