login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A296438
Expansion of e.g.f. log(1 + arctan(x))*exp(x).
5
0, 1, 1, 0, 0, 13, 5, -336, -56, 18593, -6735, -1598520, 1192664, 205475645, -255011835, -36324220856, 62049925040, 8519764352097, -18835422533375, -2551646722754512, 6927586371061712, 951619735931190157, -3077560879933239899, -432185107142832520576, 1624964470900980885432
OFFSET
0,6
LINKS
FORMULA
E.g.f.: log(1 + i*(log(1 - i*x) - log(1 + i*x))/2)*exp(x), where i is the imaginary unit.
EXAMPLE
E.g.f.: A(x) = x/1! + x^2/2! + 13*x^5/5! + 5*x^6/6! - 336*x^7/7! - 56*x^8/8! + ...
MAPLE
a:=series(log(1+arctan(x))*exp(x), x=0, 25): seq(n!*coeff(a, x, n), n=0..24); # Paolo P. Lava, Mar 27 2019
MATHEMATICA
nmax = 24; CoefficientList[Series[Log[1 + ArcTan[x]] Exp[x], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 24; CoefficientList[Series[Log[1 + I (Log[1 - I x] - Log[1 + I x])/2] Exp[x], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) my(ox=O(x^30)); Vecrev(Pol(serlaplace(log(1 + atan(x + ox)) * exp(x + ox)))) \\ Andrew Howroyd, Dec 12 2017
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 12 2017
STATUS
approved