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!)
A247463 Numbers n such that n!3 - 3^3 is prime, where n!3 = n!!! is a triple factorial number (A007661). 1
8, 11, 13, 22, 29, 49, 56, 61, 103, 142, 149, 257, 319, 365, 680, 736, 737, 749, 947, 974, 1040, 4277, 4678, 9961, 10652, 15545, 18064, 31325, 34918, 41032 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Large terms correspond to probable primes.
a(31) > 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-27 = 11*8*5*2-27 = 853 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] - 27], AppendTo[lst, n]], {n, 100}]; lst
Select[Range[6, 1100], PrimeQ[Times@@Range[#, 1, -3]-27]&] (* Harvey P. Dale, Mar 16 2023 *)
CROSSREFS
Sequence in context: A363374 A337491 A106670 * A308562 A254671 A265412
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)