OFFSET
0,3
COMMENTS
Radius of convergence of e.g.f. is |x| < r, where r = 0.678886646361824692... satisfies tan(r) = 1/cosh(r).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
FORMULA
a(n) ~ n!/((sin(r)+cos(r)*cosh(r)+sin(r)*sinh(r))*r^(n+1)), where r = 0.678886646... is the root of the equation sin(r)*cosh(r)=cos(r). - Vaclav Kotesovec, Jun 27 2013
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 14*x^3/3! + 81*x^4/4! + 596*x^5/5! +...
MATHEMATICA
CoefficientList[Series[1/(Cos[x]-Sin[x]*Cosh[x]), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jun 27 2013 *)
PROG
(PARI) {a(n)=n!*polcoeff(1/(cos(x+x*O(x^n)) -sin(x+x*O(x^n)) *cosh(x+x*O(x^n))), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 29 2012
STATUS
approved