OFFSET
0,3
FORMULA
E.g.f.: 1/(1 - sinh(x)/(1 - sinh(x)/(1 - sinh(x)/(1 - sinh(x)/(1 - ...))))), a continued fraction.
a(n) ~ sqrt(2) * 17^(1/4) * n^(n-1) / (exp(n) * (log((1+ sqrt(17))/4))^(n - 1/2)). - Vaclav Kotesovec, Nov 18 2017
MAPLE
a:=series(csch(x)*(1-sqrt(1-4*sinh(x)))/2, x=0, 21): seq(n!*coeff(a, x, n), n=0..19); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
nmax = 19; CoefficientList[Series[Csch[x] (1 - Sqrt[1 - 4 Sinh[x]])/2, {x, 0, nmax}], x] Range[0, nmax]!
nmax = 19; CoefficientList[Series[1/(1 + ContinuedFractionK[-Sinh[x], 1, {k, 1, nmax}]), {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 18 2017
STATUS
approved