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!)
A351137 a(n) = Sum_{k=0..n} (-1)^(n-k) * k! * k^(3*n) * Stirling1(n,k). 4
1, 1, 129, 121172, 421875178, 3922823960054, 80130334773241142, 3156849112458066440568, 218554371053209725986724984, 24795129220015277612148345850896, 4365539219231132131300647267518575008, 1141930521329052244894253748456776246166288 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
In general, for m >= 0, Sum_{k=0..n} (-1)^(n-k) * k! * k^(m*n) * Stirling1(n,k) ~ c * r^(m*n) * (1 + r*exp(m/r))^n * n^((m+1)*n + 1/2) / exp((m+1)*n), where r is the real root of the equation LambertW(-1, -r*exp(-r)) = -r - exp(-m/r) and c is a constant (depending only on m). - Vaclav Kotesovec, Feb 04 2022
LINKS
FORMULA
E.g.f.: Sum_{k>=0} (-log(1 - k^3*x))^k.
a(n) ~ c * r^(3*n) * (1 + r*exp(3/r))^n * n^(4*n + 1/2) / exp(4*n), where r = 0.97698437755148201976772582981871258235824532360125531194... is the real root of the equation LambertW(-1, -r*exp(-r)) = -r - exp(-3/r) and c = 2.3655154360078103511101518906595610482889989819... - Vaclav Kotesovec, Feb 04 2022
MATHEMATICA
a[0] = 1; a[n_] := Sum[(-1)^(n - k) * k! * k^(3*n) * StirlingS1[n, k], {k, 1, n}]; Array[a, 12, 0] (* Amiram Eldar, Feb 02 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*k!*k^(3*n)*stirling(n, k, 1));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-log(1-k^3*x))^k)))
CROSSREFS
Cf. A007840 (m=0), A320096 (m=1), A351136 (m=2).
Sequence in context: A283535 A183553 A242229 * A138586 A103347 A291505
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 02 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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)