The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A356908 E.g.f. satisfies A(x)^A(x) = 1/(1 - x)^2. 4
1, 2, -2, 24, -272, 4840, -107496, 2934400, -94501760, 3511914624, -147882696960, 6959217277056, -361941871760256, 20616017227643136, -1276341094954066176, 85337532623368181760, -6128269375791673718784, 470426144496265208979456 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = Sum_{k=0..n} 2^k * (-k+1)^(k-1) * |Stirling1(n,k)|.
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * (-2 * log(1-x))^k / k!.
E.g.f.: A(x) = exp( LambertW(-2 * log(1-x)) ).
E.g.f.: A(x) = -2 * log(1-x)/LambertW(-2 * log(1-x)).
MAPLE
S:= series(exp( LambertW(-2 * log(1-x))), x, 51):
seq(n!*coeff(S, x, n), n=0..50); # Robert Israel, Sep 18 2022
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = (1/(1-x)^2)^(1/A[x]) + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 05 2024 *)
PROG
(PARI) a(n) = sum(k=0, n, 2^k*(-k+1)^(k-1)*abs(stirling(n, k, 1)));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*(-2*log(1-x))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(-2*log(1-x)))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(-2*log(1-x)/lambertw(-2*log(1-x))))
CROSSREFS
Sequence in context: A127261 A239531 A194130 * A032336 A032084 A306062
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 03 2022
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 May 16 16:19 EDT 2024. Contains 372554 sequences. (Running on oeis4.)