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!)
A355603 Expansion of e.g.f. (1 + x)^(x^4/24). 3
1, 0, 0, 0, 0, 5, -15, 70, -420, 3024, -22050, 202950, -2113650, 24324300, -305645340, 4174483950, -61253992800, 961049212200, -16054949350440, 284505099278400, -5329752594075000, 105239780964864000, -2184466455408699000, 47550052231211237400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = -(n-1)!/24 * Sum_{k=5..n} (-1)^k * k/(k-4) * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/5)} Stirling1(n-4*k,k)/(24^k * (n-4*k)!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1+x)^(x^4/24)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^4/24*log(1+x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=-(i-1)!/24*sum(j=5, i, (-1)^j*j/(j-4)*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\5, stirling(n-4*k, k, 1)/(24^k*(n-4*k)!));
CROSSREFS
Sequence in context: A149639 A149640 A353173 * A355507 A259205 A149641
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 09 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 13:31 EDT 2024. Contains 375517 sequences. (Running on oeis4.)