[go: up one dir, main page]

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!)
A361182 E.g.f. satisfies A(x) = exp( 3*x*A(x) ) / (1-x). 5
1, 4, 41, 735, 19293, 672573, 29342241, 1540097541, 94579646553, 6656561754345, 528414534842949, 46716837535074897, 4552821617337191637, 484953672676323320109, 56056228305888242732841, 6988787950179969557086797, 934866118278080385555647025 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..n} 3^k * (k+1)^(k-1) * binomial(n,k)/k!.
E.g.f.: LambertW( -3*x/(1-x) ) / (-3*x).
a(n) ~ (1 + 3*exp(1))^(n + 3/2) * n^(n-1) / (3^(3/2) * exp(n + 1/2)). - Vaclav Kotesovec, Mar 03 2023
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[3*x*A[x]]/(1 - x) + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n, 3^k*(k+1)^(k-1)*binomial(n, k)/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(lambertw(-3*x/(1-x))/(-3*x)))
CROSSREFS
Cf. A361066.
Sequence in context: A367846 A270703 A363302 * A192547 A006129 A244437
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 03 2023
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 August 29 21:34 EDT 2024. Contains 375518 sequences. (Running on oeis4.)