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!)
A336951 E.g.f.: 1 / (1 - x * exp(3*x)). 8
1, 1, 8, 69, 780, 11145, 191178, 3823785, 87406056, 2247785073, 64228084110, 2018771719569, 69221032558956, 2571290056399545, 102860527370221026, 4408690840306136505, 201557641172689004112, 9790792086366911655009, 503570143277542340304534 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (3 * (n-k))^k / k!.
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * k * 3^(k-1) * a(n-k).
a(n) ~ n! * (3/LambertW(3))^n / (1 + LambertW(3)). - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 18; CoefficientList[Series[1/(1 - x Exp[3 x]), {x, 0, nmax}], x] Range[0, nmax]!
Join[{1}, Table[n! Sum[(3 (n - k))^k/k!, {k, 0, n}], {n, 1, 18}]]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] k 3^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 18}]
PROG
(PARI) seq(n)={ Vec(serlaplace(1 / (1 - x*exp(3*x + O(x^n))))) } \\ Andrew Howroyd, Aug 08 2020
CROSSREFS
Column k=3 of A351790.
Sequence in context: A222064 A317096 A327606 * A335114 A226597 A209074
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 08 2020
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 22:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)