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!)
A247866 Numbers k such that k!3 + 3^4 is prime. 1
2, 7, 14, 16, 22, 23, 26, 40, 43, 47, 58, 62, 70, 107, 265, 292, 439, 874, 982, 1063, 1150, 2506, 3578, 3775, 7679, 10024, 42625, 46714 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(29) > 50000.
LINKS
Henri & Renaud Lifchitz, PRP Records. Search for n!3+81
OpenPFGW Project, Primality Tester
Eric Weisstein's World of Mathematics, Multifactorial.
EXAMPLE
7!3 + 81 = 7*4*1 + 81 = 109 is prime, so 7 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: A331703 A032537 A072120 * A057126 A363026 A319250
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 May 8 19:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)