[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A360545
E.g.f. satisfies A(x) = x * exp( 3*(x + A(x))/2 ).
2
0, 1, 6, 54, 756, 14580, 358668, 10736712, 378823392, 15395255280, 708217959600, 36380741745744, 2064234271203360, 128214974795177088, 8652900673357097472, 630483717450225530880, 49330027417316557012992, 4124992361928178722764544
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: A(x) = (-2/3) * LambertW(-3*x/2 * exp(3*x/2)).
a(n) = Sum_{k=1..n} (3*k/2)^(n-1) * binomial(n,k) = 3^(n-1) * A100526(n).
a(n) ~ sqrt(1 + LambertW(exp(-1))) * 3^(n-1) * n^(n-1) / (2^(n-1) * exp(n) * LambertW(exp(-1))^n). - Vaclav Kotesovec, Feb 17 2023
PROG
(PARI) my(N=20, x='x+O('x^N)); concat(0, Vec(serlaplace(-2*lambertw(-3*x/2*exp(3*x/2))/3)))
(PARI) a(n) = sum(k=1, n, (3*k/2)^(n-1)*binomial(n, k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 11 2023
STATUS
approved