OFFSET
0,3
COMMENTS
Radius of convergence of A(x): r = exp(-Pi/2) = 0.207879576..., with A(r) = exp(Pi/4) = 2.19328..., where r = limit_{n->oo} a(n)/a(n+1)*(n+1). Radius of convergence is from a general formula based on an heuristic argument.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..350
Vaclav Kotesovec, Asymptotic of implicit functions if Fww = 0
FORMULA
a(n) = n! * [x^n] (exp(arctan(x)))^(2n+1)/(2n+1).
a(n) ~ Gamma(1/3) * exp(n*(Pi/2-1) + Pi/4) * n^(n-5/6) / (2*6^(1/6)*sqrt(Pi)) * (1 - c/n^(1/3)), where c = 0.4593... - Vaclav Kotesovec, Jan 24 2014
a(n) = i^n * (n!/(2*n+1)) * Sum_{k=0..n} (-1)^k * binomial(-i*(n+1/2), n-k) * binomial(i*(n+1/2), k), where i is the imaginary unit. - Fabian Pereyra, Apr 27 2026
MATHEMATICA
Table[n!*SeriesCoefficient[(Exp[ArcTan[x]])^(2n+1)/(2n+1), {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Jan 24 2014 *)
PROG
(PARI) a(n)=n!*polcoeff((exp(atan(x)))^(2*n+1)+x*O(x^n), n, x)/(2*n+1)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 06 2003
STATUS
approved
