The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A327411 a(n) = multinomial(2*n+3; 3, 2, 2, ..., 2) (n times '2'). 2
1, 10, 210, 7560, 415800, 32432400, 3405402000, 463134672000, 79196028912000, 16631166071520000, 4207685016094560000, 1262305504828368000000, 443069232194757168000000, 179886108271071410208000000, 83647040346048205746720000000, 44165637302713452634268160000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2^(-n-1)*Gamma(2*n + 4)/3.
a(n) = (2*(n-1)^2 + 9*n + 1)*a(n-1) for n > 0.
a(n) / n! = A000457(n).
MAPLE
a:= n-> combinat[multinomial](2*n+3, 3, 2$n):
seq(a(n), n=0..17); # Alois P. Heinz, Sep 07 2019
PROG
(SageMath)
def a(n):
return multinomial([3] + [2] * n)
[a(n) for n in range(20)]
CROSSREFS
Sequence in context: A238467 A254322 A365341 * A112364 A201621 A057408
KEYWORD
nonn
AUTHOR
Peter Luschny, Sep 07 2019
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 13 00:07 EDT 2024. Contains 372497 sequences. (Running on oeis4.)