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!)
A349719 E.g.f. satisfies: A(x) = exp( x * (1 + 1/A(x))/2 ). 8
1, 1, 0, 1, -4, 26, -212, 2108, -24720, 334072, -5112544, 87396728, -1650607040, 34132685120, -767025716736, 18612106195456, -485013257865472, 13509071081429888, -400505695457942528, 12592502771190979712, -418524228123134068224 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = (1/2^n) * Sum_{k=0..n} (-k+1)^(n-1) * binomial(n,k).
E.g.f.: (x/2)/LambertW( x/2 * exp(-x/2) ).
G.f.: 2 * Sum_{k>=0} (-k+1)^(k-1) * x^k/(2 - (-k+1)*x)^(k+1).
a(n) ~ -(-1)^n * sqrt(1 + LambertW(exp(-1))) * n^(n-1) / (2^n * exp(n) * LambertW(exp(-1))^(n-1)). - Vaclav Kotesovec, Dec 05 2021
MATHEMATICA
a[n_] := (1/2^n) * Sum[If[k == n == 1, 1, (-k + 1)^(n - 1)] * Binomial[n, k], {k, 0, n}]; Array[a, 21, 0] (* Amiram Eldar, Nov 27 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-k+1)^(n-1)*binomial(n, k))/2^n;
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace((x/2)/lambertw(x/2*exp(-x/2))))
(PARI) my(N=40, x='x+O('x^N)); Vec(2*sum(k=0, N, (-k+1)^(k-1)*x^k/(2-(-k+1)*x)^(k+1)))
CROSSREFS
Sequence in context: A239295 A274735 A355379 * A283828 A306028 A164101
KEYWORD
sign
AUTHOR
Seiichi Manyama, Nov 27 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 April 23 10:13 EDT 2024. Contains 371905 sequences. (Running on oeis4.)