login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A247868
Numbers n such that n!3 + 3^5 is prime, where n!3 = n!!! is a triple factorial number (A007661).
1
7, 10, 11, 22, 23, 25, 44, 46, 47, 50, 53, 55, 89, 122, 214, 410, 427, 526, 539, 575, 1369, 1370, 2291, 4999, 5374, 7202, 7375, 7823, 8921, 9764, 22967, 25507, 44117
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(34) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3+243
OpenPFGW Project, Primality Tester
Eric Weisstein's World of Mathematics, Multifactorial.
EXAMPLE
10!3+243 = 10*7*4*1+243= 523 is prime, so 10 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] + 243], AppendTo[lst, n]], {n, 100}]; lst
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Robert Price, Sep 25 2014
STATUS
approved