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!)
A352138 Expansion of e.g.f. 1/(exp(x) - log(1 + x)). 4
1, 0, -2, 1, 17, -17, -401, 817, 16197, -49861, -1123633, 5354787, 105696447, -682603651, -14697824519, 131535803133, 2457119246745, -28321054685609, -572811846560453, 8626026427105983, 146289547341006011, -2784279036040263575, -51756654994427512331 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=1..n} ((-1)^k * (k-1)! + 1) * binomial(n,k) * a(n-k).
MATHEMATICA
m = 22; Range[0, m]! * CoefficientList[Series[1/(Exp[x] - Log[1 + x]), {x, 0, m}], x] (* Amiram Eldar, Mar 06 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(exp(x)-log(1+x))))
(PARI) a(n) = if(n==0, 1, -sum(k=1, n, ((-1)^k*(k-1)!+1)*binomial(n, k)*a(n-k)));
CROSSREFS
Cf. A235378.
Sequence in context: A012968 A266827 A316226 * A160468 A242195 A012889
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 06 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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)