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!)
A351763 Expansion of e.g.f. 1/(1 - 3*x*exp(x)). 3
1, 3, 24, 279, 4332, 84075, 1958058, 53202387, 1652070696, 57713665779, 2240196853710, 95650311987483, 4455281606078988, 224815388384744859, 12216916158370619010, 711312392929267383075, 44176151714082889756368, 2915038701200389804440675 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: 1/(1 - 3*x*exp(x)).
a(n) = n! * Sum_{k=0..n} 3^(n-k) * (n-k)^k/k!.
a(0) = 1 and a(n) = 3 * n * Sum_{k=0..n-1} binomial(n-1,k) * a(k) for n > 0.
a(n) ~ n! / ((1 + LambertW(1/3)) * LambertW(1/3)^n). - Vaclav Kotesovec, Feb 19 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-3*x*exp(x))))
(PARI) a(n) = n!*sum(k=0, n, 3^(n-k)*(n-k)^k/k!);
(PARI) a(n) = if(n==0, 1, 3*n*sum(k=0, n-1, binomial(n-1, k)*a(k)));
CROSSREFS
Column k=3 of A351761.
Cf. A351778.
Sequence in context: A218223 A276360 A354289 * A355794 A355426 A064037
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 18 2022
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)