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!)
A249400 Numbers n such that n!3 + 3 is prime, where n!3 = n!!! is a triple factorial number (A007661). 1
2, 4, 5, 7, 8, 10, 11, 13, 14, 16, 19, 20, 26, 28, 29, 32, 41, 56, 61, 77, 100, 169, 181, 205, 338, 347, 955, 1952, 2197, 2428, 2960, 3430, 4618, 7478, 8209, 8422, 9235, 11107, 13481, 18194, 19229, 29854, 46532 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(44) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3-27
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
Sequence in context: A119905 A213219 A161750 * A347782 A226896 A175302
KEYWORD
nonn,more
AUTHOR
Robert Price, Oct 27 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 24 02:46 EDT 2024. Contains 371917 sequences. (Running on oeis4.)