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!)
A354232 Expansion of e.g.f. exp(log(1 + x)^5). 2
1, 0, 0, 0, 0, 120, -1800, 21000, -235200, 2693880, -30504600, 310239600, -2026767600, -22324267680, 1480359360480, -48314853350400, 1332965821824000, -34178451017685120, 837433109548661760, -19671723873906894720, 436228097513559408000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
E.g.f.: (1 + x)^(log(1 + x)^4).
a(0) = 1; a(n) = 120 * Sum_{k=1..n} binomial(n-1,k-1) * Stirling1(k,5) * a(n-k).
a(n) = Sum_{k=0..floor(n/5)} (5*k)! * Stirling1(n,5*k)/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(log(1+x)^5)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1+x)^log(1+x)^4))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=120*sum(j=1, i, binomial(i-1, j-1)*stirling(j, 5, 1)*v[i-j+1])); v;
(PARI) a(n) = sum(k=0, n\5, (5*k)!*stirling(n, 5*k, 1)/k!);
CROSSREFS
Sequence in context: A056270 A001118 A354230 * A052767 A353404 A353200
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 20 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 19 12:02 EDT 2024. Contains 375296 sequences. (Running on oeis4.)