OFFSET
0,2
COMMENTS
Also denominators of the expansion of tan(x)/tanh(x). - G. C. Greubel, Jan 31 2022
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
J. M. Gandhi, The coefficients of cosh x/cos x and a note on Carlitz's coefficients of sinh x/sin x, Math. Mag., 31 (1958), 185-191.
MATHEMATICA
With[{nn=100}, Denominator[Take[CoefficientList[Series[Sinh[x]/Sin[x], {x, 0, nn}], x] Range[0, nn]!, {1, -1, 2}]]] (* Harvey P. Dale, Jul 10 2013 *)
PROG
(Magma)
m:=120; R<x>:=PowerSeriesRing(Rationals(), m);
b:= Coefficients(R!(Laplace( Sinh(x)/Sin(x) )));
[Denominator( b[2*n-1] ): n in [1..Floor((m-2)/2)]]; // G. C. Greubel, Jan 31 2022
(Sage) [denominator( factorial(2*n)*( sinh(x)/sin(x) ).series(x, 2*n+3).list()[2*n] ) for n in (0..60)] # G. C. Greubel, Jan 31 2022
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
EXTENSIONS
More terms from Harvey P. Dale, Jul 10 2013
STATUS
approved