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!)
A292893 Expansion of e.g.f. exp(x * (1 - exp(x))). 5
1, 0, -2, -3, 8, 55, 84, -637, -4992, -10593, 92060, 1012099, 3642000, -18733585, -354606084, -2157876645, 2003383424, 175455790399, 1766183783868, 5436448194707, -96997103373360, -1770215099996721, -13073420293290148, 22275369715313131 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
From Seiichi Manyama, Jul 09 2022: (Start)
a(n) = n! * Sum_{k=0..floor(n/2)} (-1)^k * Stirling2(n-k,k)/(n-k)!.
a(0) = 1; a(n) = -(n-1)! * Sum_{k=2..n} k/(k-1)! * a(n-k)/(n-k)!. (End)
From Seiichi Manyama, Aug 29 2022: (Start)
a(n) = Sum_{k=0..n} (-1)^k * (k+1)^(n-k) * binomial(n,k).
G.f.: Sum_{k>=0} (-x)^k / (1 - (k+1)*x)^(k+1). (End)
PROG
(PARI) x='x+O('x^66); Vec(serlaplace(exp(x*(1-exp(x)))))
(PARI) a(n) = n!*sum(k=0, n\2, (-1)^k*stirling(n-k, k, 2)/(n-k)!); \\ Seiichi Manyama, Jul 09 2022
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=-(i-1)!*sum(j=2, i, j/(j-1)!*v[i-j+1]/(i-j)!)); v; \\ Seiichi Manyama, Jul 09 2022
(PARI) a(n) = sum(k=0, n, (-1)^k*(k+1)^(n-k)*binomial(n, k)); \\ Seiichi Manyama, Aug 29 2022
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (-x)^k/(1-(k+1)*x)^(k+1))) \\ Seiichi Manyama, Aug 29 2022
CROSSREFS
Column k=1 of A292894.
Sequence in context: A013205 A340486 A245384 * A356902 A042365 A329496
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 26 2017
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)