The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A336948 E.g.f.: 1 / (exp(-3*x) - x). 6
1, 4, 23, 195, 2229, 31863, 546255, 10925757, 249753897, 6422808411, 183524701779, 5768419379913, 197791542799965, 7347180526444359, 293912722687075767, 12597352573293062757, 575928946256877156177, 27976119070974574461363, 1438896686251112024068251 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (3 * (n-k+1))^k / k!.
a(0) = 1; a(n) = 4 * n * a(n-1) - Sum_{k=2..n} binomial(n,k) * (-3)^k * a(n-k).
a(n) ~ n! / ((1 + LambertW(3)) * (LambertW(3)/3)^(n+1)). - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 18; CoefficientList[Series[1/(Exp[-3 x] - x), {x, 0, nmax}], x] Range[0, nmax]!
Table[n! Sum[(3 (n - k + 1))^k/k!, {k, 0, n}], {n, 0, 18}]
a[0] = 1; a[n_] := a[n] = 4 n a[n - 1] - Sum[Binomial[n, k] (-3)^k a[n - k], {k, 2, n}]; Table[a[n], {n, 0, 18}]
PROG
(PARI) seq(n)={ Vec(serlaplace(1 / (exp(-3*x + O(x*x^n)) - x))) } \\ Andrew Howroyd, Aug 08 2020
CROSSREFS
Sequence in context: A108953 A369140 A222454 * A099869 A369194 A365353
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 May 17 09:56 EDT 2024. Contains 372588 sequences. (Running on oeis4.)