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!)
A353229 Expansion of e.g.f. (1 - x)^(-x^3). 9
1, 0, 0, 0, 24, 60, 240, 1260, 28224, 241920, 2181600, 21621600, 315342720, 4358914560, 61607407680, 912518006400, 15142006978560, 265601118182400, 4877947688140800, 93691850626483200, 1901787789077452800, 40548028309147699200, 904101131200045363200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=4..n} k/(k-3) * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/4)} |Stirling1(n-3*k,k)|/(n-3*k)!.
a(n) ~ sqrt(2*Pi) * n^(n + 1/2) / exp(n). - Vaclav Kotesovec, May 04 2022
MATHEMATICA
With[{nn=30}, CoefficientList[Series[(1-x)^-x^3, {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jun 20 2024 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-x)^(-x^3)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x^3*log(1-x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=4, i, j/(j-3)*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\4, abs(stirling(n-3*k, k, 1))/(n-3*k)!);
CROSSREFS
Sequence in context: A321840 A052759 A356911 * A366777 A351504 A356099
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 01 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 August 29 08:53 EDT 2024. Contains 375511 sequences. (Running on oeis4.)