OFFSET
1,1
COMMENTS
Corresponding primes are: 11, 13, 233, 394249, 13404169, 24663654409, 311607296009, ...
a(36) > 50000.
Terms > 50 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6+9.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
14!6 + 9 = 14*8*2 + 9 = 233 is prime, so 14 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, n*MultiFactorial[n - k, k]];
Select[Range[0, 50000], PrimeQ[MultiFactorial[#, 6] + 9] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jun 05 2017
STATUS
approved