OFFSET
0,5
COMMENTS
Note that a(88) is negative. - Vaclav Kotesovec, Jul 29 2014
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..200
FORMULA
E.g.f. satisfies:
(1) A(x) = (cos(x) + sin(x)*A'(x)) / (cos(x)*A'(x) - sin(x)).
(2) A(x) = 1 + Integral (cos(x) + sin(x)*A(x)) / (cos(x)*A(x) - sin(x)) dx.
EXAMPLE
E.g.f.: A(x) = 1 + x + x^2/2! + x^3/3! + 3*x^4/4! + 7*x^5/5! + 25*x^6/6! +...
PROG
(PARI) {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+intformal((cos(X)+sin(X)*A)/(cos(X)*A-sin(X)+x*O(x^n)))); n!*polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
sign
AUTHOR
Paul D. Hanna, Jul 29 2014
STATUS
approved