OFFSET
0,1
EXAMPLE
-1/6*x+53/1296*x^3+73/145152*x^5+45137/156764160*x^7+11226497/893931945984*x^9+...
MAPLE
t1:=arcsin(csc(x)-coth(x));
t2:=series(t1, x, 30);
t3:=seriestolist(t2);
t3:=[seq(t3[2*i], i=1..(nops(t3)-2)/2 )];
t4:=map(numer, t3); t5:=map(denom, t3); lprint(t2);
MATHEMATICA
Take[Denominator[Abs[CoefficientList[Series[ArcSin[Csc[x]-Coth[x]], {x, 0, 30}], x]]], {2, -1, 2}] (* Harvey P. Dale, Dec 31 2011 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Dec 18 2011
STATUS
approved