OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..100
FORMULA
a(n) ~ n^(n-1) * sqrt(s/(1+exp(2*s)*(s-r))) / (exp(n)*r^n), where r = 0.3186838609215673947... and s = 0.6997097688577272466... are roots of the system of equations s+r*sinh(1-exp(s))=r, exp(s)*r*cosh(1-exp(s))=1. - Vaclav Kotesovec, Jul 16 2014
MAPLE
A:= proc(n) option remember; if n=0 then 0 else convert (series (x* (sinh (exp(A(n-1))-1)+1), x=0, n+1), polynom) fi end: a:= n-> coeff (A(n), x, n)*n!: seq (a(n), n=0..22);
MATHEMATICA
CoefficientList[InverseSeries[Series[-(x/(-1 + Sinh[1 - E^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