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!)
A347726 Expansion of e.g.f.: exp(x / (1-x)^x). 2
1, 1, 1, 7, 37, 221, 1801, 15709, 157641, 1775521, 21898801, 296379931, 4346295757, 68682481141, 1163591541113, 21024039322441, 403559222086801, 8199021870113985, 175746277620520417, 3963144157484213359, 93778090395227788021, 2323080237693908254381 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * Sum_{i=0..n} (-1)^(n-i) * ( Sum_{j=0..n-i} i^j * Stirling1(n-i-j,j)/(n-i-j)! )/i!.
MATHEMATICA
a[0] = 1; a[n_] := n! * Sum[(-1)^(n - i) * Sum[i^j * StirlingS1[n - i - j, j]/(n - i - j)!, {j, 0, n - i}]/i!, {i, 1, n}]; Array[a, 20, 0] (* Amiram Eldar, Sep 11 2021 *)
PROG
(PARI) a(n) = n!*sum(i=0, n, (-1)^(n-i)*sum(j=0, n-i, i^j*stirling(n-i-j, j, 1)/(n-i-j)!)/i!);
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(x/(1-x)^x)))
CROSSREFS
Sequence in context: A362087 A046235 A297329 * A339686 A144496 A025012
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 11 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)