OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..200
FORMULA
a(n) ~ n^(n-1) * (cos(s))^(3/2) * sqrt(s/(-2*r + 2*s + r*sin(2*s))) / (exp(n) * (2*r^2-2*r*s+s^2)^(1/4) * r^(n-3/4)), where r = 0.3331897707672964894... and s = 0.6497639144980735763... are roots of the system of equations r*(sec(s)*sec(tan(s)))^2 = 1, s = r + r*tan(tan(s)). - Vaclav Kotesovec, Jul 16 2014
MAPLE
A:= proc(n) option remember; if n=0 then 0 else convert(series(x*
(tan(tan(A(n-1)))+1), x=0, n+1), polynom) fi
end:
a:= n-> coeff(A(n), x, n)*n!:
seq(a(n), n=0..23);
MATHEMATICA
CoefficientList[InverseSeries[Series[x/(1 + Tan[Tan[x]]), {x, 0, 20}], x], x] * Range[0, 20]! (* Vaclav Kotesovec, Jul 16 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 27 2008
STATUS
approved