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!)
A354134 Expansion of e.g.f. 1/(1 - log(1 + x)^3/6). 3
1, 0, 0, 1, -6, 35, -205, 1204, -6692, 29084, 17160, -3069924, 61356724, -959574408, 13499619224, -174983776176, 2029529618080, -18417948918640, 36189097244720, 4235753092128480, -157628320980720480, 4166967770825777280, -95152715945973322560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = 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)/6^k.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-log(1+x)^3/6)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, binomial(i, j)*stirling(j, 3, 1)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\3, (3*k)!*stirling(n, 3*k, 1)/6^k);
CROSSREFS
Sequence in context: A001109 A352972 A180033 * A260770 A262717 A144638
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 18 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 September 14 03:19 EDT 2024. Contains 375911 sequences. (Running on oeis4.)