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!)
A344401 a(n) = [x^n] 24*(-40*x^4 + 49*x^3 - 15*x^2 + 13*x + 2) / (1 - 4*x)^(9/2). 3
48, 1176, 14760, 138840, 1102080, 7814016, 51104592, 314542800, 1846484640, 10435991280, 57176069808, 305224906896, 1593937712640, 8168132011200, 41177443370400, 204627619798560, 1004073535314720, 4871589672747600, 23398711748319600, 111369179635837200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The sequence and its sister sequence A344400 are related to Frédéric Chapoton's sequences A344228 and A344321, as described in the linked remark.
LINKS
FORMULA
a(n) = 6*(3*n + 4)*(2*n^3 + 9*n^2 + 13*n + 4)*binomial(2*n-1, n) for n>=1. - John Keith, May 28 2021
MAPLE
aList := proc(len) local gf, ser;
gf := 24*(-40*x^4 + 49*x^3 - 15*x^2 + 13*x + 2) / (1 - 4*x)^(9/2):
ser := series(gf, x, len+2): seq(coeff(ser, x, n), n = 0..len) end:
aList(19);
PROG
(PARI) a(n) = if(n==0, 48, 6*(3*n + 4)*(2*n^3 + 9*n^2 + 13*n + 4)*binomial(2*n-1, n)) \\ Andrew Howroyd, May 28 2021
CROSSREFS
Sequence in context: A161693 A162193 A162461 * A369561 A011000 A025233
KEYWORD
nonn
AUTHOR
Peter Luschny, May 16 2021
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 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)