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!)
A347003 Expansion of e.g.f. exp( log(1 - x)^4 / 4! ). 9
1, 0, 0, 0, 1, 10, 85, 735, 6804, 68544, 754130, 9044750, 117773656, 1656897528, 25061576176, 405667844400, 6997383182854, 128126051451184, 2481884332498848, 50702417505257904, 1089371806098805286, 24555007848629510700, 579348221233739760550, 14278529041496660104450 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * |Stirling1(k,4)| * a(n-k).
a(n) = Sum_{k=0..floor(n/4)} (4*k)! * |Stirling1(n,4*k)|/(24^k * k!). - Seiichi Manyama, May 06 2022
MATHEMATICA
nmax = 23; CoefficientList[Series[Exp[Log[1 - x]^4/4!], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] Abs[StirlingS1[k, 4]] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 23}]
PROG
(PARI) a(n) = sum(k=0, n\4, (4*k)!*abs(stirling(n, 4*k, 1))/(24^k*k!)); \\ Seiichi Manyama, May 06 2022
CROSSREFS
Sequence in context: A354318 A346946 A000454 * A346923 A145146 A252981
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 10 2021
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 September 16 23:59 EDT 2024. Contains 375984 sequences. (Running on oeis4.)