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!)
A247467 Numbers n such that n!3 + 3^6 is prime. 0
4, 5, 7, 8, 10, 11, 14, 17, 35, 41, 50, 59, 89, 136, 164, 205, 224, 283, 763, 1034, 1253, 1630, 1820, 3199, 3800, 5080, 6124, 17306, 17398, 20768, 34033, 43607 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(33) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3+729
OpenPFGW Project, Primality Tester
Eric Weisstein's World of Mathematics, Multifactorial
EXAMPLE
11!3+729 = 11*8*5*2+729 = 1609 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] + 729], AppendTo[lst, n]], {n, 100}]; lst
CROSSREFS
Sequence in context: A219958 A288753 A202186 * A032728 A078577 A225387
KEYWORD
nonn,more
AUTHOR
Robert Price, Sep 17 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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)