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!)
A358738 Expansion of Sum_{k>=0} k! * ( x/(1 - k*x) )^k. 2
1, 1, 3, 15, 103, 893, 9341, 114355, 1603155, 25318137, 444689497, 8597568671, 181430298479, 4149361409077, 102229328244837, 2699254206069387, 76038064580742091, 2276259442660623857, 72160287650141753777, 2414950992007231422007 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=1..n} k! * k^(n-k) * binomial(n-1,k-1) for n > 0.
a(n) ~ n! / ((1 + LambertW(1))^2 * LambertW(1)^n). - Vaclav Kotesovec, Feb 18 2023
MATHEMATICA
nmax = 20; CoefficientList[Series[Sum[k! * (x/(1 - k*x))^k, {k, 0, 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!*(x/(1-k*x))^k))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, k!*k^(n-k)*binomial(n-1, k-1)));
CROSSREFS
Sequence in context: A079486 A245118 A343884 * A331689 A001274 A139766
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 April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)