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!)
A349561 E.g.f. satisfies: A(x)^A(x) = 1/(1 - x). 10
1, 1, 0, 3, -8, 100, -834, 11438, -159928, 2762352, -52322160, 1124320032, -26509832040, 686751503568, -19306448087640, 586539826169880, -19131996548499264, 667157522614934016, -24762890955027112128, 974824890777753840576, -40566428716555791936000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = (-1)^(n-1) * Sum_{k=0..n} (k-1)^(k-1) * Stirling1(n,k).
E.g.f. A(x) = -Sum_{k>=0} (k-1)^(k-1) * (log(1-x))^k / k!.
E.g.f.: A(x) = -log(1-x)/LambertW(-log(1-x)).
a(n) ~ -(-1)^n * n^(n-1) / ((exp(exp(-1)) - 1)^(n - 1/2) * exp(n + exp(-1)/2 + 1/2)). - Vaclav Kotesovec, Nov 22 2021
EXAMPLE
A(x) - 1 = x + 3*x^3/6 - 8*x^4/24 + ... = x + x^3/2 - x^4/3 + ... .
A(x)^A(x) = (1 + (A(x) - 1))^(1 + (A(x) - 1)) = Sum_{k>=0} A005727(k) * (A(x) - 1)^k / k! = 1 + 1 * (x + x^3/2 - x^4/3 + ... )/1! + 2 * (x + x^3/2 - x^4/3 + ... )^2/2! + 3 * (x + x^3/2 - x^4/3 + ... )^3/3! + ... = 1 + x + x^2 + x^3 + ... = 1/(1 - x).
MATHEMATICA
Join[{1}, Table[(n-1)! - (-1)^n*Sum[(k-1)^(k-1)*StirlingS1[n, k], {k, 2, n}], {n, 1, 20}]] (* Vaclav Kotesovec, Nov 22 2021 *)
PROG
(PARI) a(n) = (-1)^(n-1)*sum(k=0, n, (k-1)^(k-1)*stirling(n, k, 1));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(-sum(k=0, N, (k-1)^(k-1)*log(1-x)^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(-log(1-x)/lambertw(-log(1-x))))
CROSSREFS
Sequence in context: A099296 A066619 A028504 * A231389 A123279 A361872
KEYWORD
sign
AUTHOR
Seiichi Manyama, Nov 22 2021
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 13 16:07 EDT 2024. Contains 372522 sequences. (Running on oeis4.)