A296979
Expansion of e.g.f. arcsin(log(1 + x)).
Original entry on oeis.org
0, 1, -1, 3, -12, 68, -480, 4144, -42112, 494360, -6581880, 98079696, -1617373296, 29245459176, -575367843960, 12235339942344, -279650131845120, 6836254328079936, -177979145883651648, 4916243253642325056, -143602294106947553280, 4422411460743707222784
Offset: 0
arcsin(log(1 + x)) = x^1/1! - x^2/2! + 3*x^3/3! - 12*x^4/4! + 68*x^5/5! - 480*x^6/6! + ...
Cf.
A001710,
A001818,
A003703,
A003708,
A009024,
A009454,
A009775,
A104150,
A189815,
A296980,
A296981,
A296982.
-
a:=series(arcsin(log(1+x)),x=0,22): seq(n!*coeff(a,x,n),n=0..21); # Paolo P. Lava, Mar 26 2019
-
nmax = 21; CoefficientList[Series[ArcSin[Log[1 + x]], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 21; CoefficientList[Series[-I Log[I Log[1 + x] + Sqrt[1 - Log[1 + x]^2]], {x, 0, nmax}], x] Range[0, nmax]!
A296980
Expansion of e.g.f. arcsinh(log(1 + x)).
Original entry on oeis.org
0, 1, -1, 1, 0, -2, -30, 446, -3248, 12412, 16020, -211356, -10756944, 284038272, -3556910448, 19122463296, 135073768320, -1286054192304, -108801241372368, 3952903127312016, -65667347037774720, 339816855220730784, 8862271481944986336
Offset: 0
arcsinh(log(1 + x)) = x^1/1! - x^2/2! + x^3/3! - 2*x^5/5! - 30*x^6/6! + ...
Cf.
A001710,
A001818,
A003703,
A003708,
A009024,
A009454,
A009775,
A104150,
A296435,
A296979,
A296981,
A296982.
-
a:=series(arcsinh(log(1+x)),x=0,23): seq(n!*coeff(a,x,n),n=0..22); # Paolo P. Lava, Mar 26 2019
-
nmax = 22; CoefficientList[Series[ArcSinh[Log[1 + x]], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[Log[Log[1 + x] + Sqrt[1 + Log[1 + x]^2]], {x, 0, nmax}], x] Range[0, nmax]!
A296981
Expansion of e.g.f. arctan(log(1 + x)).
Original entry on oeis.org
0, 1, -1, 0, 6, -22, -30, 952, -5656, -9952, 508320, -3874992, -20690208, 833780400, -7697940432, -52230156288, 2467649024640, -24686997151104, -329724479772288, 14493628861307136, -159114034671287040, -2682505451050592256, 126421889770129637376
Offset: 0
arctan(log(1 + x)) = x^1/1! - x^2/2! + 6*x^4/4! - 22*x^5/5! - 30*x^6/6! + ...
Cf.
A001710,
A003703,
A003708,
A009024,
A009454,
A009775,
A010050,
A104150,
A110708,
A296979,
A296980,
A296982.
-
a:=series(arctan(log(1+x)),x=0,23): seq(n!*coeff(a,x,n),n=0..22); # Paolo P. Lava, Mar 26 2019
-
nmax = 22; CoefficientList[Series[ArcTan[Log[1 + x]], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[(I/2) Log[1 - I Log[1 + x]] - (I/2) Log[1 + I Log[1 + x]], {x, 0, nmax}], x] Range[0, nmax]!
Showing 1-3 of 3 results.