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

A101384
a(n) = n*(n-1)^3*(n^2-n-1)/2.
1
0, 0, 1, 60, 594, 3040, 10875, 30996, 75460, 163584, 324405, 599500, 1046166, 1740960, 2783599, 4301220, 6453000, 9435136, 13486185, 18892764, 25995610, 35196000, 46962531, 61838260, 80448204, 103507200, 131828125, 166330476, 208049310, 258144544, 317910615
OFFSET
0,4
REFERENCES
T. A. Gulliver, Sequences from Cubes of Integers, Int. Math. Journal, 4 (2003), 439-445.
FORMULA
G.f.: x^2*(1 + 53*x + 195*x^2 + 107*x^3 + 4*x^4)/(1 - x)^7. - Ilya Gutkovskiy, Feb 24 2017
E.g.f.: x^2*(1 + 19*x + 30*x^2 + 11*x^3 + x^4)*exp(x)/2. - G. C. Greubel, Mar 11 2021
MAPLE
A101384:= n-> n*(n-1)^3*(n^2 -n -1)/2: seq(A101384(n), n=0..35); # G. C. Greubel, Mar 11 2021
MATHEMATICA
Table[n*(n-1)^3*(n^2 -n -1)/2, {n, 0, 35}] (* G. C. Greubel, Mar 11 2021 *)
PROG
(Magma) [n*(n-1)^3*(n^2-n-1)/2: n in [0..40]]; // Vincenzo Librandi, Jun 15 2011
(Sage) [n*(n-1)^3*(n^2 -n -1)/2 for n in (0..35)] # G. C. Greubel, Mar 11 2021
CROSSREFS
Cf. A062392.
Sequence in context: A298684 A316458 A184191 * A229750 A223338 A081384
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jan 15 2005
STATUS
approved