OFFSET
0,5
COMMENTS
The unsigned sequence contains 3 copies of the strictly positive powers of 2.
LINKS
Index entries for linear recurrences with constant coefficients, signature (0, 2, 0, -2).
FORMULA
a(n) = 2a(n-2)-2a(n-4). a(n) = -4a(n-8), n > 7.
O.g.f.: x(1+x-x^2)/(1-2x^2+2x^4). - R. J. Mathar, Jul 08 2008
MATHEMATICA
With[{c=LinearRecurrence[{2, -2}, {0, 1}, 40]}, Riffle[c, Differences[c]]] (* or *) LinearRecurrence[{0, 2, 0, -2}, {0, 1, 1, 1}, 80] (* Harvey P. Dale, Oct 15 2017 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Paul Curtz, May 05 2008
EXTENSIONS
Edited by R. J. Mathar, Jul 08 2008
STATUS
approved