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!)
A165457 a(n) = (2*n+1)!*(2*n+3)/3. 3
1, 10, 280, 15120, 1330560, 172972800, 31135104000, 7410154752000, 2252687044608000, 851515702861824000, 391697223316439040000, 215433472824041472000000, 139600890389978873856000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*n*(2*n+3)*a(n-1).
Sum_{k>=0} 1/a(k) = 3/e = A135003.
G.f.: 3F0(1,1,5/2;;4x). - R. J. Mathar, Oct 15 2009
Sum_{k>=0} (-1)^k/a(k) = 3*(sin(1)-cos(1)) = (-3)*A143624. - Amiram Eldar, Apr 12 2021
MAPLE
seq(factorial(2*n+1)*(2*n+3)/3, n=0..12); # Muniru A Asiru, Oct 21 2018
MATHEMATICA
Table[(2*n + 1)!*(2*n + 3)/3, {n, 0, 30}] (* G. C. Greubel, Oct 20 2018 *)
PROG
(PARI) a(n)=(2*n+1)!*(2*n+3)/3
(Magma) [Factorial(2*n+1)*(2*n+3)/3: n in [0..30]]; // G. C. Greubel, Oct 20 2018
(GAP) List([0..12], n->Factorial(2*n+1)*(2*n+3)/3); # Muniru A Asiru, Oct 21 2018
(Python)
import math
for n in range(0, 12): print(int(math.factorial(2*n+1)*(2*n+3)/3), end=', ') # Stefano Spezia, Oct 21 2018
CROSSREFS
Cf. A135003. [Jaume Oliver Lafont, Oct 03 2009]
Sequence in context: A157713 A205824 A251580 * A025035 A012243 A186270
KEYWORD
nonn
AUTHOR
Jaume Oliver Lafont, Sep 20 2009
EXTENSIONS
frac keyword removed by Jaume Oliver Lafont, Nov 02 2009
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:02 EDT 2024. Contains 371235 sequences. (Running on oeis4.)