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!)
A247464 Numbers n such that n!!! - 3^4 is prime. 1
10, 13, 14, 17, 20, 26, 29, 31, 32, 50, 59, 77, 82, 104, 164, 185, 217, 263, 293, 361, 437, 442, 545, 547, 599, 608, 623, 739, 782, 1081, 1120, 1138, 1429, 2516, 2518, 4277, 4529, 5438, 5596, 11945, 12716, 13955, 14540, 31730, 31769, 42964, 46396 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(48) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3-81
OpenPFGW Project, Primality Tester
Eric Weisstein's World of Mathematics, Multifactorial
EXAMPLE
10!3-81 = 10*7*4*1-81 = 199 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] - 81], AppendTo[lst, n]], {n, 100}]; lst
CROSSREFS
Sequence in context: A226778 A061837 A256477 * A219110 A226024 A134651
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 August 12 08:06 EDT 2024. Contains 375085 sequences. (Running on oeis4.)