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

A157128
Expansion of (1 - x - x^2 + x^3 - x^5) / ((1 + x)^2*(1 - x + x^2)^2).
3
1, -1, -1, -1, 2, 1, 1, -3, -1, -1, 4, 1, 1, -5, -1, -1, 6, 1, 1, -7, -1, -1, 8, 1, 1, -9, -1, -1, 10, 1, 1, -11, -1, -1, 12, 1, 1, -13, -1, -1, 14, 1, 1, -15, -1, -1, 16, 1, 1, -17, -1, -1, 18, 1, 1, -19, -1, -1, 20, 1, 1
OFFSET
0,5
COMMENTS
Hankel transform of A157127.
FORMULA
a(n) = -2*a(n-3) - a(n-6) for n>5. - Colin Barker, Oct 23 2019
MATHEMATICA
CoefficientList[Series[(1-x-x^2+x^3-x^5)/(1+2x^3+x^6), {x, 0, 60}], x] (* or *) LinearRecurrence[{0, 0, -2, 0, 0, -1}, {1, -1, -1, -1, 2, 1}, 70] (* Harvey P. Dale, Jul 08 2019 *)
PROG
(PARI) Vec((1 - x - x^2 + x^3 - x^5) / ((1 + x)^2*(1 - x + x^2)^2) + O(x^80)) \\ Colin Barker, Oct 23 2019
CROSSREFS
Sequence in context: A210873 A224838 A030272 * A359899 A301376 A307828
KEYWORD
easy,sign
AUTHOR
Paul Barry, Feb 23 2009
STATUS
approved