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!)
A346390 E.g.f.: -log( 1 - (exp(x) - 1)^3 / 3! ). 3
1, 6, 25, 100, 511, 3626, 30045, 262800, 2470171, 25889446, 302003065, 3821936300, 51672723831, 745789322466, 11505096936085, 189023074558600, 3288243760145491, 60319276499454686, 1164282909466221105, 23603464830964817700, 501435697062735519151 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
LINKS
FORMULA
a(n) = Stirling2(n,3) + (1/n) * Sum_{k=1..n-1} binomial(n,k) * Stirling2(n-k,3) * k * a(k).
a(n) ~ (n-1)! / (log(6^(1/3)+1))^n. - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 23; CoefficientList[Series[-Log[1 - (Exp[x] - 1)^3/3!], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 3] &
a[n_] := a[n] = StirlingS2[n, 3] + (1/n) Sum[Binomial[n, k] StirlingS2[n - k, 3] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 3, 23}]
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(-log(1-(exp(x)-1)^3/3!))) \\ Michel Marcus, Aug 09 2021
CROSSREFS
Sequence in context: A034347 A009121 A327504 * A323824 A037537 A253220
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 08 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 August 7 14:24 EDT 2024. Contains 375013 sequences. (Running on oeis4.)