OFFSET
0,5
COMMENTS
The inner function is cosech(x)-coth(x) = -x/2 +x^3/24 -x^5/240 +17*x^7/40320 -31*x^9/725760 +691*x^11/159667200 -... with e.g.f numerators cosech(x)-coth(x) = sum b(n)x^n/(n+1)! apparently in A001469.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..400
EXAMPLE
1-x/2 +x^2/8 +x^3/48 -7*x^4/384 +x^5/1280 +97*x^6/46080 -...
MAPLE
S:= series(exp(csch(x)-coth(x)), x, 51):
seq(numer(coeff(S, x, j)), j=0..50); # Robert Israel, Nov 14 2016
MATHEMATICA
Numerator[Take[CoefficientList[Series[Exp[Csch[x] - Coth[x]], {x, 0, 40}], x], {1, -1, 1}]] (* G. C. Greubel, Nov 13 2016 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Name edited by R. J. Mathar, Dec 22 2011
STATUS
approved