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!)
A352295 Expansion of e.g.f. 1/(exp(x) - x/(1 + x)). 1
1, 0, -3, 5, 29, -181, -401, 9645, -14183, -689257, 4826171, 55700633, -1024570955, -2770525005, 221566919911, -1028838834811, -49439771820367, 723165789334703, 9903852025111027, -362150510124039471, -463774017017434739, 169793689786411161995 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} ((-1)^(k-1) * k! - 1) * binomial(n,k) * a(n-k).
MATHEMATICA
m = 21; Range[0, m]! * CoefficientList[Series[1/(Exp[x] - x/(1 + x)), {x, 0, m}], x] (* Amiram Eldar, Mar 11 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(exp(x)-x/(1+x))))
(PARI) a(n) = if(n==0, 1, sum(k=1, n, ((-1)^(k-1)*k!-1)*binomial(n, k)*a(n-k)));
CROSSREFS
Sequence in context: A092330 A176951 A082716 * A283266 A060255 A316791
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 11 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 15 14:50 EDT 2024. Contains 375173 sequences. (Running on oeis4.)