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!)
A365575 Expansion of e.g.f. 1 / (1 + 3 * log(1-x))^(2/3). 1
1, 2, 12, 114, 1482, 24468, 490020, 11538840, 312363720, 9556741440, 326076452640, 12275391192480, 505400508041760, 22590511357965120, 1089423938332883520, 56379459359942190720, 3116574045158647605120, 183271869976364873222400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} (Product_{j=0..k-1} (3*j+2)) * |Stirling1(n,k)|.
a(0) = 1; a(n) = Sum_{k=1..n} (3 - k/n) * (k-1)! * binomial(n,k) * a(n-k).
a(n) ~ Gamma(1/3) * n^(n + 1/6) / (3^(1/6) * sqrt(2*Pi) * (exp(1/3) - 1)^(n + 2/3) * exp(2*n/3)). - Vaclav Kotesovec, Nov 11 2023
MATHEMATICA
a[n_] := Sum[Product[3*j + 2, {j, 0, k - 1}] * Abs[StirlingS1[n, k]], {k, 0, n}]; Array[a, 18, 0] (* Amiram Eldar, Sep 11 2023 *)
PROG
(PARI) a(n) = sum(k=0, n, prod(j=0, k-1, 3*j+2)*abs(stirling(n, k, 1)));
CROSSREFS
Sequence in context: A052696 A107723 A258175 * A225797 A302286 A035051
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 09 2023
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 June 20 11:08 EDT 2024. Contains 373517 sequences. (Running on oeis4.)