login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A245940
(2n^7 + 4n^6 - n^5 - 4n^4 - n^3) / 24.
2
0, 0, 17, 279, 1960, 8875, 30555, 87122, 216384, 483570, 994125, 1909985, 3469752, 6013189, 10010455, 16096500, 25111040, 38144532, 56590569, 82205115, 117173000, 164182095, 226505587, 308092774, 413668800, 548843750, 720231525, 935578917, 1203905304
OFFSET
0,3
COMMENTS
For n > 0: sum of n-th row of triangle A245826.
LINKS
FORMULA
a(n) = n^3*(2*n^3 + 2*n^2 - 3*n - 1)*(n + 1)/24 = n^3*(n - 1)*(n + 1)*(2*n^2 + 4*n + 1)/24.
G.f.: x^2*(x^4 + 55*x^3 + 204*x^2 + 143*x + 17) / (x - 1)^8. - Colin Barker, Aug 08 2014
MAPLE
A245940:=n->(2*n^7 + 4*n^6 - n^5 - 4*n^4 - n^3) / 24: seq(A245940(n), n=0..30); # Wesley Ivan Hurt, Aug 09 2014
MATHEMATICA
Table[(2 n^7 + 4 n^6 - n^5 - 4 n^4 - n^3)/24, {n, 0, 30}] (* Vincenzo Librandi, Aug 09 2014 *)
LinearRecurrence[{8, -28, 56, -70, 56, -28, 8, -1}, {0, 0, 17, 279, 1960, 8875, 30555, 87122}, 30] (* Harvey P. Dale, Apr 19 2018 *)
PROG
(Haskell)
a245940 n = n^3 * (2 * n^3 + 2 * n^2 - 3 * n - 1) * (n + 1) `div` 24
(PARI)
concat([0, 0], Vec(x^2*(x^4+55*x^3+204*x^2+143*x+17)/(x-1)^8 + O(x^100))) \\ Colin Barker, Aug 08 2014
(Magma) [(2*n^7 + 4*n^6 - n^5 - 4*n^4 - n^3) / 24: n in [0..30]] // Vincenzo Librandi, Aug 09 2014
CROSSREFS
Sequence in context: A113076 A159503 A375859 * A188063 A012235 A196743
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Aug 07 2014
STATUS
approved