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!)
A356911 E.g.f. satisfies A(x)^A(x) = 1/(1 - x)^(x^3). 2
1, 0, 0, 0, 24, 60, 240, 1260, -12096, -120960, -1144800, -11642400, 190270080, 4670265600, 81378198720, 1348668921600, -880532674560, -406217626214400, -13255586359142400, -343166884178227200, -3137937973466572800, 72862796986940620800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..floor(n/4)} (-k+1)^(k-1) * |Stirling1(n-3*k,k)|/(n-3*k)!.
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * (-x^3 * log(1-x))^k / k!.
E.g.f.: A(x) = exp( LambertW(-x^3 * log(1-x)) ).
E.g.f.: A(x) = -x^3 * log(1-x)/LambertW(-x^3 * log(1-x)).
MATHEMATICA
nmax = 21; A[_] = 1;
Do[A[x_] = ((1 - x)^(-x^3))^(1/A[x]) + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\4, (-k+1)^(k-1)*abs(stirling(n-3*k, k, 1))/(n-3*k)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*(-x^3*log(1-x))^k/k!)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(-x^3*log(1-x)))))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(-x^3*log(1-x)/lambertw(-x^3*log(1-x))))
CROSSREFS
Sequence in context: A185445 A321840 A052759 * A353229 A366777 A351504
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 03 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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)