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!)
A353118 Expansion of e.g.f. 1/(1 + log(1 - x)^3). 9
1, 0, 0, 6, 36, 210, 2070, 24864, 310632, 4337544, 68922360, 1205002656, 22844264256, 469287123552, 10397824478496, 246800350393344, 6246190572981120, 167972669001740160, 4783274802508890240, 143775432034543203840, 4548946867429143444480 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = 6 * Sum_{k=1..n} binomial(n,k) * |Stirling1(k,3)| * a(n-k).
a(n) = Sum_{k=0..floor(n/3)} (3*k)! * |Stirling1(n,3*k)|.
a(n) ~ sqrt(2*Pi) * n^(n + 1/2) / (3 * (exp(1) - 1)^(n+1)). - Vaclav Kotesovec, May 07 2022
MATHEMATICA
With[{nn=20}, CoefficientList[Series[1/(1+Log[1-x]^3), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Mar 04 2023 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+log(1-x)^3)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=6*sum(j=1, i, binomial(i, j)*abs(stirling(j, 3, 1))*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\3, (3*k)!*abs(stirling(n, 3*k, 1)));
CROSSREFS
Cf. A346922.
Sequence in context: A052748 A292297 A353344 * A357027 A357093 A357029
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 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 August 29 23:34 EDT 2024. Contains 375520 sequences. (Running on oeis4.)