login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A012269 Expansion of e.g.f.: arctan(log(x+1)*log(x+1)). 1
0, 0, 2, -6, 22, -100, 308, 1512, -51144, 869472, -12406608, 155319120, -1563312720, 6008315040, 296596492320, -12739805608320, 357984190838400, -8317532611046400, 160961311569285120, -2183410259228574720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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
Sequence in context: A189844 A189282 A318974 * A012272 A009789 A012271
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Corrected and definition clarified by Harvey P. Dale, Feb 24 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)