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!)
A346427 E.g.f.: -log(1 - log(1 + x) * exp(x)). 1
0, 1, 2, 7, 29, 183, 1319, 12122, 124802, 1508581, 20150509, 302637564, 4960500764, 89164162579, 1730245993111, 36241995276276, 812108432244304, 19430625834864633, 493622198791114665, 13283773364613034324, 377224137563670860492, 11278211794764786428831 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 0; a(n) = -(-1)^n * A002741(n) - (1/n) * Sum_{k=1..n-1} (-1)^(n-k) * binomial(n,k) * A002741(n-k) * k * a(k).
MATHEMATICA
nmax = 21; CoefficientList[Series[-Log[1 - Log[1 + x] Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
A002741[n_] := A002741[n] = n! Sum[(-1)^k/((n - k) k!), {k, 0, n - 1}]; a[0] = 0; a[n_] := a[n] = -(-1)^n A002741[n] - (1/n) Sum[(-1)^(n - k) Binomial[n, k] A002741[n - k] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 0, 21}]
PROG
(PARI) my(x='x+O('x^25)); concat(0, Vec(serlaplace(-log(1 - log(1+x) * exp(x))))) \\ Michel Marcus, Jul 19 2021
CROSSREFS
Sequence in context: A329259 A185310 A143883 * A003437 A192410 A270518
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 18 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 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)