The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A306929 A105140 A107018 * A048792 A024585 A190482
KEYWORD
nonn,more
AUTHOR
Robert Price, Sep 25 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 11 12:41 EDT 2024. Contains 373311 sequences. (Running on oeis4.)