OFFSET
0,5
COMMENTS
Essentially the same as A077953.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (-1,-2,-2).
FORMULA
a(n) = (1/3) * (-1)^floor((n+1)/2) * ((2^floor(n/2+1) + (-1)^floor(n/2))). - Ralf Stephan, Aug 17 2013
MATHEMATICA
LinearRecurrence[{-1, -2, -2}, {1, -1, -1}, 50] (* Vincenzo Librandi, Aug 17 2013 *)
PROG
(PARI) Vec(1/(1+x+2*x^2+2*x^3)+O(x^50)) \\ Charles R Greathouse IV, Sep 27 2012
(PARI) a(n)=1/3*(-1)^floor((n+1)/2)*((2^floor(n/2+1)+(-1)^floor(n/2))) \\ Ralf Stephan, Aug 17 2013
(Magma) I:=[1, -1, -1]; [n le 3 select I[n] else -Self(n-1)-2*Self(n-2) -2*Self(n-3): n in [1..50]]; // Vincenzo Librandi, Aug 17 2013
(Sage) (1/(1+x+2*x^2+2*x^3)).series(x, 50).coefficients(x, sparse=False) # G. C. Greubel, Jun 25 2019
(GAP) a:=[1, -1, -1];; for n in [4..50] do a[n]:=-a[n-1]-2*a[n-2]-2*a[n-3]; od; a; # G. C. Greubel, Jun 25 2019
CROSSREFS
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Nov 17 2002, Jun 17 2007
STATUS
approved