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!)
A357247 E.g.f. satisfies A(x) * log(A(x)) = x * exp(-x). 7
1, 1, -3, 13, -103, 1241, -19691, 384805, -8918351, 238966705, -7265920339, 247123552061, -9295263915191, 383095792217737, -17167554097899323, 831082449069928021, -43221681697593767071, 2403219105771778162529, -142263939562414917333155 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f. satisfies A(x) * log(A(x)) - x * exp(-x) = 0.
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * (x * exp(-x))^k / k!.
E.g.f.: A(x) = exp( LambertW(x * exp(-x)) ).
E.g.f.: A(x) = x * exp(-x)/LambertW(x * exp(-x)).
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(k-1) * A216857(k) * binomial(n-1,k-1) * a(n-k).
a(n) = (-1)^(n - 1) * Sum_{j=0..n} binomial(n, j) * (j - 1)^(j - 1) * j^(n - j). - Peter Luschny, Jan 28 2023
a(n) ~ -(-1)^n * sqrt(1 + LambertW(exp(-1))) * n^(n-1) / (exp(n+1) * LambertW(exp(-1))^n). - Vaclav Kotesovec, Jan 28 2023
MAPLE
A357247 := n -> (-1)^(n - 1) * add(binomial(n, j) * (j - 1)^(j - 1) * j^(n - j), j = 0..n): seq(A357247(n), n = 0..18); # Peter Luschny, Jan 28 2023
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[x/(Exp[x]*A[x])] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*(x*exp(-x))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(x*exp(-x)))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(x*exp(-x)/lambertw(x*exp(-x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, sum(k=1, j, (-k)^(j-1)*binomial(j, k))*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Cf. A177885, A216857, A357243, A357246, A359759 (column 1).
Sequence in context: A215126 A228148 A098027 * A182104 A073587 A366698
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 19 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 April 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)