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!)
A349720 E.g.f. satisfies: A(x) = exp( x * (1 + 1/A(x)^2)/2 ). 7
1, 1, -1, 7, -63, 801, -13025, 258343, -6048511, 163276417, -4992740289, 170571634311, -6439161507647, 266180947507489, -11958385377911713, 580151397382158631, -30227616424300542975, 1683438461080186841601, -99796591057813372007297 (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/2^n) * Sum_{k=0..n} (-2*k+1)^(n-1) * binomial(n,k).
E.g.f.: ( x/LambertW( x * exp(-x) ) )^(1/2).
G.f.: 2 * Sum_{k>=0} (-2*k+1)^(k-1) * x^k/(2 - (-2*k+1)*x)^(k+1).
a(n) ~ -(-1)^n * sqrt(1 + LambertW(exp(-1))) * n^(n-1) / (2 * exp(n) * LambertW(exp(-1))^(n - 1/2)). - Vaclav Kotesovec, Dec 05 2021
MATHEMATICA
a[n_] := (1/2^n) * Sum[(-2*k + 1)^(n - 1) * Binomial[n, k], {k, 0, n}]; Array[a, 19, 0] (* Amiram Eldar, Nov 27 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-2*k+1)^(n-1)*binomial(n, k))/2^n;
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((x/lambertw(x*exp(-x)))^(1/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(2*sum(k=0, N, (-2*k+1)^(k-1)*x^k/(2-(-2*k+1)*x)^(k+1)))
CROSSREFS
Sequence in context: A346683 A084063 A184141 * A152797 A345383 A126883
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)