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!)
A358741 Expansion of Sum_{k>=0} k! * ( k * x/(1 - x) )^k. 2
1, 1, 9, 179, 6655, 400581, 35530421, 4357960999, 706230728379, 146116931998025, 37577989723572001, 11758017370126904091, 4398121660346674034039, 1938019214715102033590029, 993580299268226843514372045, 586357970017371399763899232271 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} k! * k^k * binomial(n-1,k-1) for n > 0.
a(n) ~ n! * n^n. - Vaclav Kotesovec, Feb 18 2023
MATHEMATICA
nmax = 20; CoefficientList[1 + Series[Sum[k! * (k * x/(1 - x))^k, {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 18 2023 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, k!*(k*x/(1-x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, k!*k^k*binomial(n-1, k-1)));
CROSSREFS
Cf. A355494.
Sequence in context: A009009 A220267 A304402 * A034221 A034240 A163132
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 29 2022
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 July 19 13:06 EDT 2024. Contains 374394 sequences. (Running on oeis4.)