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!)
A353224 Expansion of e.g.f. (1 - x^4)^(-1/x). 2
1, 0, 0, 6, 0, 0, 360, 2520, 0, 60480, 1814400, 13305600, 19958400, 1556755200, 39956716800, 337815878400, 1743565824000, 103742166528000, 2676547896422400, 26863293006950400, 287217598187520000, 15976056520359936000, 432428057769996288000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..floor((n+1)/4)} (4*k-1)/k * a(n-4*k+1)/(n-4*k+1)!.
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)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-log(1-x^4)/x)))
(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+1)\4, (4*j-1)/j*v[i-4*j+2]/(i-4*j+1)!)); v;
CROSSREFS
Cf. A353225.
Sequence in context: A230787 A360424 A101109 * A293526 A293568 A192072
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 10 17:16 EDT 2024. Contains 375058 sequences. (Running on oeis4.)