OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(44) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3-27
Joe McLean, Interesting Sources of Probable Primes
OpenPFGW Project, Primality Tester
Eric Weisstein's World of Mathematics, Multifactorial
EXAMPLE
11!3+3 = 11*8*5*2+3 = 883 is prime, so 11 is in the sequence.
MATHEMATICA
MultiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*MultiFactorial[n - k, k]]];
lst={}; Do[If[PrimeQ[MultiFactorial[n, 3] + 3], AppendTo[lst, n]], {n, 100}]; lst
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Oct 27 2014
STATUS
approved