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!)
A303916 Constant term in the expansion of (Sum_{k=0..n} k*(x^k + x^(-k)))^3. 2
0, 0, 12, 84, 324, 924, 2184, 4536, 8568, 15048, 24948, 39468, 60060, 88452, 126672, 177072, 242352, 325584, 430236, 560196, 719796, 913836, 1147608, 1426920, 1758120, 2148120, 2604420, 3135132, 3749004, 4455444, 5264544, 6187104, 7234656, 8419488, 9754668 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n-1) * n * (n+1) * (n+2) * (2*n+1) / 10.
MATHEMATICA
a[n_] := Coefficient[Expand[Sum[k * (x^k + x^(-k)), {k, 0, n}]^3], x, 0]; Array[a, 30, 0] (* Amiram Eldar, Dec 16 2018 *)
Table[((n-1)n(n+1)(n+2)(2n+1))/10, {n, 0, 50}] (* Harvey P. Dale, Jul 01 2019 *)
PROG
(PARI) {a(n) = polcoeff((sum(k=0, n, k*(x^k+x^(-k))))^3, 0, x)}
(PARI) {a(n) = (n-1)*n*(n+1)*(n+2)*(2*n+1)/10}
(GAP) List([0..35], n->(n-1)*n*(n+1)*(n+2)*(2*n+1)/10); # Muniru A Asiru, Dec 16 2018
CROSSREFS
Column 3 of A322549.
Sequence in context: A298977 A213784 A085409 * A111464 A341367 A004407
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Dec 16 2018
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 14:38 EDT 2024. Contains 371254 sequences. (Running on oeis4.)