OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..150
FORMULA
a(n) ~ n^(n-1) * sqrt(s/((2*r^2-2*r*s+s^2)*(2*(s-r)*(cosh(s))^2 + r*sinh(s)))) / (exp(n) * r^(n-1)), where r = 0.3611557635751972926... and s = 0.7471844338670576493... are roots of the system of equations r*cosh(s) = (cos(sinh(s)))^2, s = r + r*tan(sinh(s)). - Vaclav Kotesovec, Jul 16 2014
MAPLE
A:= proc(n) option remember; if n=0 then 0 else convert (series (x* (tan (sinh(A(n-1)))+1), x=0, n+1), polynom) fi end: a:= n-> coeff (A(n), x, n)*n!: seq (a(n), n=0..25);
# second Maple program:
a:= n-> n!*coeff(series(RootOf(A=x*(tan(sinh(A))+1), A), x, n+1), x, n):
seq(a(n), n=0..25); # Alois P. Heinz, Mar 05 2013
MATHEMATICA
CoefficientList[InverseSeries[Series[x/(1 + Tan[Sinh[x]]), {x, 0, 20}], x], x] * Range[0, 20]! (* Vaclav Kotesovec, Jul 16 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 27 2008
STATUS
approved