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”).

A026043
a(n) = dot_product(1,2,...,n)*(5,6,...,n,1,2,3,4).
4
45, 67, 98, 140, 195, 265, 352, 458, 585, 735, 910, 1112, 1343, 1605, 1900, 2230, 2597, 3003, 3450, 3940, 4475, 5057, 5688, 6370, 7105, 7895, 8742, 9648, 10615, 11645, 12740, 13902, 15133, 16435, 17810, 19260, 20787, 22393, 24080, 25850, 27705
OFFSET
5,1
FORMULA
a(n) = n(2n^2 - 9n + 49)/6 (n >= 5). - Emeric Deutsch, Nov 29 2006
G.f.: x^5*(45 - 113*x + 100*x^2 - 30*x^3)/(1 - x)^4. - Colin Barker, Sep 17 2012
MAPLE
a:=n->n*(2*n^2-9*n+49)/6: seq(a(n), n=5..45); # Emeric Deutsch, Nov 29 2006
MATHEMATICA
Table[Range[n].RotateLeft[Range[n], 4], {n, 5, 51}] (* T. D. Noe, Nov 07 2006 *)
CoefficientList[Series[(45 - 113 x + 100 x^2 - 30 x^3)/(1 - x)^4, {x, 0, 60}], x] (* Vincenzo Librandi, Oct 17 2013 *)
PROG
(Magma) [n*(2*n^2-9*n+49)/6: n in [5..60]]; // Vincenzo Librandi, Oct 17 2013
CROSSREFS
Column 4 of triangle A094414.
Sequence in context: A056776 A172466 A038494 * A372291 A330850 A053720
KEYWORD
nonn,easy
EXTENSIONS
Corrected by T. D. Noe, Nov 07 2006
STATUS
approved