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!)
A345454 E.g.f.: log(1 - log(1 - x) * exp(x)). 1
0, 1, 2, 1, -5, 3, 141, 348, -1938, 3013, 274327, 1583338, -4613476, 41135339, 3201505997, 33153080054, 49123558416, 2360520208825, 133442956587099, 2109709010976874, 14751973018988252, 338170133891984663, 15120630911878380457, 324654726628159335686 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 0; a(n) = A002104(n) - (1/n) * Sum_{k=1..n-1} binomial(n,k) * A002104(n-k) * k * a(k).
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 - Log[1 - x] Exp[x]], {x, 0, nmax}], x] Range[0, nmax]!
A002104[n_] := A002104[n] = n! Sum[1/((n - k) k!), {k, 0, n - 1}]; a[0] = 0; a[n_] := a[n] = A002104[n] - (1/n) Sum[Binomial[n, k] A002104[n - k] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 0, 23}]
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: A108362 A171090 A141506 * A271684 A194682 A274105
KEYWORD
sign
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 24 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)