OFFSET
0,3
COMMENTS
Partial sums are A129371.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
Index entries for linear recurrences with constant coefficients, signature (0,3,0,-3,0,1).
FORMULA
a(n) = (1/8)*( (7*n^2 + 2*n - 1) + (-1)^n*(n-1)^2 ).
G.f.: x*(1 + 4*x + 5*x^2 + 4*x^3)/(1-x^2)^3.
E.g.f.: (1/4)*( x*(5+4*x)*cosh(x) - (1-4*x-3*x^2)*sinh(x) ). - G. C. Greubel, Jan 31 2024
MATHEMATICA
Table[n^2-(n-1)^2 (1-(-1)^n)/8, {n, 0, 50}] (* Harvey P. Dale, Oct 22 2011 *)
PROG
(PARI) a(n)=n^2-(n-1)^2*(1-(-1)^n)/8 \\ Charles R Greathouse IV, Sep 28 2015
(Magma) [n^2 -(n-1)^2*(n mod 2)/4: n in [0..60]]; // G. C. Greubel, Jan 31 2024
(SageMath) [n^2 -(n-1)^2*(n%2)/4 for n in range(61)] # G. C. Greubel, Jan 31 2024
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Apr 11 2007
STATUS
approved