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!)
A341056 a(n) = n! * [x^n] exp(x/(1 - n*x)) / (1 - x). 0
1, 2, 9, 106, 2801, 132426, 9705577, 1015001954, 143392421601, 26298332570386, 6074043257989001, 1724846814877790682, 590605908915568818769, 239956225437223244619866, 114123836188192016600789481, 62808518765936960824453590226, 39603421893790601518269204039617 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} A341033(k,n)/k! = n! * (1 + Sum_{j=1.. n} Sum_{k=1.. j} n^(j-k) * binomial(j-1,k-1)/k!).
a(n) ~ BesselI(1,2) * n! * n^(n-1). - Vaclav Kotesovec, Feb 14 2021
EXAMPLE
a(3) = 3! * (1 + 1/1! + 7/2! + 73/3!) = 106.
MATHEMATICA
Table[n!*(1 + Sum[Sum[n^(j-k)*Binomial[j-1, k-1]/k!, {k, 1, j}], {j, 1, n}]), {n, 0, 20}] (* Vaclav Kotesovec, Feb 14 2021 *)
PROG
(PARI) {a(n) = n!*(1+sum(j=1, n, sum(k=1, j, n^(j-k)*binomial(j-1, k-1)/k!)))}
CROSSREFS
Sequence in context: A132494 A136172 A012986 * A309452 A354663 A219116
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 04 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 18 13:50 EDT 2024. Contains 371780 sequences. (Running on oeis4.)