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!)
A343899 a(n) = Sum_{k=0..n} (k!)^k * binomial(n,k). 4
1, 2, 7, 232, 332669, 24884861086, 139314218808181027, 82606412229102532926819812, 6984964247802365417561163907914436537, 109110688415634181158572146813823590758078301022074, 395940866122426284350759726810156652343313286283891529199276099071 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of (n!)^n.
LINKS
FORMULA
G.f.: Sum_{k>=0} (k! * x)^k/(1 - x)^(k+1).
E.g.f.: exp(x) * Sum_{k>=0} (k!)^(k-1) * x^k.
MATHEMATICA
a[n_] := Sum[(k!)^k * Binomial[n, k], {k, 0, n}]; Array[a, 11, 0] (* Amiram Eldar, May 05 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, k!^k*binomial(n, k));
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (k!*x)^k/(1-x)^(k+1)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(x)*sum(k=0, N, k!^(k-1)*x^k)))
CROSSREFS
Sequence in context: A048560 A261267 A020459 * A088106 A343928 A294827
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 24 06:34 EDT 2024. Contains 371920 sequences. (Running on oeis4.)