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!)
A354416 Expansion of e.g.f. (1 - log(1-x))^x. 1
1, 0, 2, 0, 16, 5, 288, 392, 9840, 33462, 582910, 3652044, 55557192, 524095728, 7910319116, 98390834310, 1573086910848, 23774700449584, 414180226506456, 7249907657342184, 138771378745878680, 2735366111451910944, 57469663931297252976, 1253755421949789141624 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} k * A089064(k-1) * binomial(n-1,k-1) * a(n-k).
a(n) ~ (n-1)!. - Vaclav Kotesovec, Jun 08 2022
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-log(1-x))^x))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^j*j*sum(k=1, j-1, (k-1)!*stirling(j-1, k, 1))*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A155585 A350972 A236755 * A057375 A009045 A060313
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 26 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 August 14 16:37 EDT 2024. Contains 375166 sequences. (Running on oeis4.)