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!)
A217651 Primes of the form 2*k!!! - 1. 0
3, 5, 7, 19, 1759, 192684799, 14285134079, 145284339199, 509122178611199, 53165268316159999, 253515360530431999, 89312661819089868632723554303999999, 25863781053916181957690694149957243371519999999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
k!!! is a triple factorial number (see the definition in A007661).
The corresponding k are in A217650.
LINKS
EXAMPLE
19 is in the sequence because k = 5 => 2*5!!! - 1 = 2*10 - 1 = 19 is prime.
MAPLE
A:= n -> mul(k, k = select(k -> k mod 3 = n mod 3, [$1 .. n])): for p from 0 to 200 do:if type(2*A(p)-1, prime)=true then printf(`%d, `, 2*A(p)-1):else fi:od:
MATHEMATICA
multiFactorial[n_, k_] := If[n < 1, 1, If[n < k + 1, n, n*multiFactorial[n - k, k]]];
Select[Table[2*multiFactorial[n, 3] - 1, {n, 0, 60}], PrimeQ]
CROSSREFS
Sequence in context: A126144 A171643 A072002 * A362417 A352710 A163637
KEYWORD
nonn
AUTHOR
Michel Lagneau, Oct 09 2012
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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)