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!)
A354318 Expansion of e.g.f. exp(-log(1 + x)^4 / 24). 2
1, 0, 0, 0, -1, 10, -85, 735, -6734, 66024, -693230, 7774250, -92754046, 1172033148, -15609023066, 217966080150, -3173198858894, 47842246890224, -740798341880328, 11644416638285544, -182433719522266066, 2752864573552860900, -36826753489645422050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
E.g.f.: 1/(1 + x)^(log(1 + x)^3 / 24).
a(0) = 1; a(n) = -Sum_{k=1..n} binomial(n-1,k-1) * Stirling1(k,4) * a(n-k).
a(n) = Sum_{k=0..floor(n/4)} (4*k)! * Stirling1(n,4*k)/((-24)^k * k!).
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[-Log[1+x]^4/24], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Dec 27 2022 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-log(1+x)^4/24)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x)^(log(1+x)^3/24)))
(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-1, j-1)*stirling(j, 4, 1)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\4, (4*k)!*stirling(n, 4*k, 1)/((-24)^k*k!));
CROSSREFS
Sequence in context: A233667 A038235 A354390 * A346946 A000454 A347003
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 24 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 May 5 06:40 EDT 2024. Contains 372257 sequences. (Running on oeis4.)