OFFSET
1,2
COMMENTS
Corresponding primes are: 7, 11, 13, 61, 97, 941, 49579081, 2131900231, 5745471106381, ...
a(43) > 50000.
Terms > 35 correspond to probable primes.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!6+6.
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
EXAMPLE
11!6 + 6 = 11*5 + 6 = 61 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] + 6] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Jun 03 2017
STATUS
approved