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!)
A343898 a(n) = Sum_{k=0..n} (k!)^3 * binomial(n,k). 5
1, 2, 11, 244, 14741, 1799366, 383827807, 130673579576, 66583061972009, 48379301165408266, 48265538214413425331, 64129741094923528310012, 110669722298686436099306941, 242891356723607474283206170574, 665950191893557715599111566813191, 2246102991406652396042587363523672896 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of (n!)^3.
LINKS
FORMULA
G.f.: Sum_{k>=0} (k!)^3 * x^k/(1 - x)^(k+1).
E.g.f.: exp(x) * Sum_{k>=0} (k!)^2 * x^k.
a(n) ~ (n!)^3. - Vaclav Kotesovec, May 03 2021
MATHEMATICA
a[n_] := Sum[(k!)^3 * Binomial[n, k], {k, 0, n}]; Array[a, 16, 0] (* Amiram Eldar, May 05 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, k!^3*binomial(n, k));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, k!^3*x^k/(1-x)^(k+1)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(x)*sum(k=0, N, k!^2*x^k)))
CROSSREFS
Sequence in context: A162385 A244012 A264330 * A134096 A132571 A102031
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 03 2021
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 17 21:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)