OFFSET
0,4
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-1,-3,2).
FORMULA
a(n) = 3*a(n-1) - a(n-2) - 3*a(n-3) + 2*a(n-4).
a(n) = A001045(n+2) - 2*n.
a(n+1) - a(n) = 4*A000975(n-1).
a(n+1) - 2*a(n)= 2*(n-1) + (-1)^n = -1, -1, 3, 3, 7, 7, 11, 11,... duplicated A004767.
G.f. ( -1+2*x+x^2-6*x^3 ) / ( (1+x)*(2*x-1)*(x-1)^2 ). - R. J. Mathar, Jul 07 2011
MATHEMATICA
CoefficientList[Series[(-1 + 2*x + x^2 - 6*x^3)/((1 + x)*(2*x - 1)*(x - 1)^2), {x, 0, 50}], x] (* G. C. Greubel, Oct 11 2017 *)
PROG
(Magma) [(2^(2+n)-(-1)^n)/3-2*n: n in [0..40]]; // Vincenzo Librandi, Aug 08 2011
(PARI) for(n=0, 50, print1((2^(2+n)-(-1)^n)/3 - 2*n, ", ")) \\ G. C. Greubel, Oct 11 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Curtz, Jul 29 2008
EXTENSIONS
Definition replaced by closed form by R. J. Mathar, Jul 07 2011
STATUS
approved