OFFSET
1,2
COMMENTS
Corresponding primes are: 19, 23, 73, 109, 953, 1747, 21523, 1339993, 49579093, 894930593, ...
a(39) > 50000.
Terms > 49 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
11!6 + 18 = 11*5 + 18 = 73 is prime, so 11 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 6] + 18] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jun 09 2017
STATUS
approved