The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A353225 Expansion of e.g.f. (1 - x^4)^(-1/x^3). 4
1, 1, 1, 1, 1, 61, 361, 1261, 3361, 128521, 1678321, 11670121, 56596321, 1773048421, 37020623641, 410615985781, 3056256665281, 88439609228881, 2516514283997281, 39513591769228561, 409546654143301441, 11679302565962651341, 413008783534735181641 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..floor((n+3)/4)} (4*k-3)/k * a(n-4*k+3)/(n-4*k+3)!.
a(n) = n! * Sum_{k=0..floor(n/4)} |Stirling1(n-3*k,n-4*k)|/(n-3*k)!.
a(n) ~ sqrt(2*Pi) * n^(n + 1/2) / (4*exp(n)). - Vaclav Kotesovec, May 04 2022
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-x^4)^(-1/x^3)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-log(1-x^4)/x^3)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=1, (i+3)\4, (4*j-3)/j*v[i-4*j+4]/(i-4*j+3)!)); v;
(PARI) a(n) = n!*sum(k=0, n\4, abs(stirling(n-3*k, n-4*k, 1))/(n-3*k)!);
CROSSREFS
Sequence in context: A361673 A373525 A357965 * A373520 A189174 A304062
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 June 11 10:41 EDT 2024. Contains 373310 sequences. (Running on oeis4.)