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!)
A331798 E.g.f.: -log(1 - x) / ((1 - x) * (1 + log(1 - x))). 1
0, 1, 5, 29, 204, 1714, 16862, 190826, 2447512, 35136696, 558727872, 9754239648, 185546362416, 3820734689472, 84687887312688, 2010622152615504, 50908186083448320, 1369376758488222336, 38998680958184088960, 1172297572938013827456, 37092793335394301708544 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} = |Stirling1(n,k)| * A007526(k).
a(n) = Sum_{k=1..n} binomial(n,k) * k! * H(k) * A007840(n-k), where H(k) is the k-th harmonic number.
a(n) ~ n! / (1 - exp(-1))^(n+1). - Vaclav Kotesovec, Jan 26 2020
MATHEMATICA
nmax = 20; CoefficientList[Series[-Log[1 - x]/((1 - x) (1 + Log[1 - x])), {x, 0, nmax}], x] Range[0, nmax]!
A007526[n_] := n! Sum[1/k!, {k, 0, n - 1}]; a[n_] := Sum[Abs[StirlingS1[n, k]] A007526[k], {k, 0, n}]; Table[a[n], {n, 0, 20}]
A007840[n_] := Sum[Abs[StirlingS1[n, k]] k!, {k, 0, n}]; a[n_] := Sum[Binomial[n, k] k! HarmonicNumber[k] A007840[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A350476 A105277 A301878 * A103213 A057588 A030522
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 26 2020
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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)