OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..425
FORMULA
a(n) ~ (n-1)! * (-1)^(n+1) * sin(n*arctan(sin(1/sqrt(2)) / (cos(1/sqrt(2)) - exp(1/sqrt(2))))) * (exp(1/sqrt(2)) / sqrt(1 + exp(sqrt(2)) - 2*exp(1/sqrt(2)) * cos(1/sqrt(2))))^n. - Vaclav Kotesovec, Jan 02 2014
EXAMPLE
arctan(log(x+1)*log(x+1)) = 2/2!*x^2-6/3!*x^3+22/4!*x^4-100/5!*x^5...
MAPLE
seq(coeff(series(factorial(n)*arctan(log(x+1)*log(x+1)), x, n+1), x, n), n = 0 .. 20); # Muniru A Asiru, Oct 28 2018
MATHEMATICA
With[{nn=20}, CoefficientList[Series[ArcTan[Log[x+1]^2], {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Feb 24 2013 *)
PROG
(PARI) x='x+O('x^30); concat([0, 0], Vec(serlaplace(atan(log(x+1)^2)))) \\ G. C. Greubel, Oct 28 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Arctan(Log(x+1)^2) )); [0, 0] cat [Factorial(n+1)*b[n]: n in [1..m-2]]; // G. C. Greubel, Oct 28 2018
CROSSREFS
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Corrected and definition clarified by Harvey P. Dale, Feb 24 2013
STATUS
approved