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!)
A349716 E.g.f. satisfies: A(x) = exp( x * (1 + A(x)^5)/2 ). 6
1, 1, 6, 91, 2156, 69926, 2884576, 144555356, 8529135216, 579220982056, 44503081624976, 3816776859516776, 361462121953291456, 37464997600663289216, 4218485281787859411456, 512762346462142021355776, 66919363061333997572830976, 9332997074366800051673277056 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = (1/2^n) * Sum_{k=0..n} (5*k+1)^(n-1) * binomial(n,k).
E.g.f.: ( -LambertW( -5*x/2 * exp(5*x/2) )/(5*x/2) )^(1/5).
G.f.: 2 * Sum_{k>=0} (5*k+1)^(k-1) * x^k/(2 - (5*k+1)*x)^(k+1).
a(n) ~ sqrt(1 + LambertW(exp(-1))) * 5^(n-1) * n^(n-1) / (LambertW(exp(-1))^(n + 1/5) * 2^n * exp(n)). - Vaclav Kotesovec, Nov 26 2021
MATHEMATICA
a[n_] := (1/2^n) * Sum[(5*k + 1)^(n - 1) * Binomial[n, k], {k, 0, n}]; Array[a, 18, 0] (* Amiram Eldar, Nov 27 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (5*k+1)^(n-1)*binomial(n, k))/2^n;
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((-lambertw(-5*x/2*exp(5*x/2))/(5*x/2))^(1/5)))
(PARI) my(N=20, x='x+O('x^N)); Vec(2*sum(k=0, N, (5*k+1)^(k-1)*x^k/(2-(5*k+1)*x)^(k+1)))
CROSSREFS
Sequence in context: A226382 A095864 A246155 * A219220 A006151 A005327
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 26 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 March 28 13:35 EDT 2024. Contains 371254 sequences. (Running on oeis4.)