OFFSET
0,4
LINKS
FORMULA
E.g.f.: A(x) = 1/sqrt(1 - arctan(x)^2). 1/A(x) is the e.g.f. of A012091. - Peter Bala, Jan 28 2026
EXAMPLE
sec(arcsin(arctan(x))) = 1 + 1/2!*x^2 + 1/4!*x^4+49/6!*x^6 - 447/8!*x^8 + ...
MAPLE
d := proc (n, x) option remember; if n = 0 then 1/sqrt(1 - x^2) else simplify( (cos(x))^2 * (diff(d(n-1, x), x))) end if end proc:
seq(eval(d(2*n, x), x = 0), n = 0..20); # Peter Bala, Jan 28 2026
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[Sec[ArcSin[ArcTan[x]]], {x, 0, nn}], x] Range[0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Nov 28 2019 *)
nmax = 20; CoefficientList[Series[1/Sqrt[1 - ArcTan[Sqrt[x]]^2], {x, 0, nmax}], x] * (2*Range[0, nmax])! (* Vaclav Kotesovec, Jan 29 2026 *)
CROSSREFS
KEYWORD
sign,easy
AUTHOR
STATUS
approved
