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

A129959
A129957(n) - n*(n-1)/2.
1
1, 1, 8, 24, 59, 115, 202, 322, 485, 693, 956, 1276, 1663, 2119, 2654, 3270, 3977, 4777, 5680, 6688, 7811, 9051, 10418, 11914, 13549, 15325, 17252, 19332, 21575, 23983, 26566, 29326, 32273, 35409, 38744, 42280, 46027, 49987, 54170, 58578, 63221
OFFSET
0,3
FORMULA
a(n) = (1+(-1)^n+n-n^2+2*n^3)/2. G.f.: (1-2*x+7*x^2+4*x^3+2*x^4)/((1-x)^4*(1+x)). [Colin Barker, Sep 10 2012]
MATHEMATICA
f[n_]:= If[Mod[n, 2] == 0, n^3 + 1, n^3]; Table[f[n] - n*(n - 1)/2, {n, 0, 40}]
CROSSREFS
Sequence in context: A302489 A099041 A306056 * A256533 A177719 A317234
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Jun 10 2007
EXTENSIONS
Edited, corrected and extended by Stefan Steinerberger, Jul 21 2007
STATUS
approved