OFFSET
0,5
EXAMPLE
1/(1 - sin(x) + sin(x)^2 - sin(x)^3) = 1 + x - (1/6)*x^3 + x^4 + (121/120)*x^5 - (2/3)*x^6 - (4201/5040)*x^7 + (6/5)*x^8 + (478801/362880)*x^9 - (1294/945)*x^10 - ...
MATHEMATICA
With[{nn=20}, CoefficientList[Series[1/(1-Sin[x]+Sin[x]^2-Sin[x]^3), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Nov 28 2014 *)
CROSSREFS
KEYWORD
sign
AUTHOR
EXTENSIONS
Corrected by N. J. A. Sloane, Nov 28 2014 at the suggestion of Harvey P. Dale
STATUS
approved