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!)
A337001 a(n) = n! * Sum_{k=0..n} k^3 / k!. 9
0, 1, 10, 57, 292, 1585, 9726, 68425, 547912, 4931937, 49320370, 542525401, 6510306540, 84633987217, 1184875823782, 17773137360105, 284370197765776, 4834293362023105, 87017280516421722, 1653328329812019577, 33066566596240399540, 694397898521048399601 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Exponential convolution of cubes (A000578) and factorial numbers (A000142).
LINKS
FORMULA
E.g.f.: x * (1 + 3*x + x^2) * exp(x) / (1 - x).
a(0) = 0; a(n) = n * (n^2 + a(n-1)).
a(n) ~ 5*exp(1)*n!. - Vaclav Kotesovec, Jan 13 2024
MATHEMATICA
Table[n! Sum[k^3/k!, {k, 0, n}], {n, 0, 21}]
nmax = 21; CoefficientList[Series[x (1 + 3 x + x^2) Exp[x]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 0; a[n_] := a[n] = n (n^2 + a[n - 1]); Table[a[n], {n, 0, 21}]
PROG
(PARI) a(n) = n! * sum(k=0, n, k^3/k!); \\ Michel Marcus, Aug 12 2020
CROSSREFS
Row sums of A121682.
Sequence in context: A038733 A004142 A006529 * A246754 A024133 A229074
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 10 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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)