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!)
A347004 Expansion of e.g.f. exp( -log(1 - x)^5 / 5! ). 8
1, 0, 0, 0, 0, 1, 15, 175, 1960, 22449, 269451, 3423860, 46238280, 664233856, 10143487354, 164423078456, 2823768543960, 51272283444264, 982177492263750, 19807082824819374, 419629806223448346, 9320808413229618816, 216645165604679499072, 5259724543984442886486 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
LINKS
FORMULA
a(0) = 1; a(n) = 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)|/(120^k * k!). - Seiichi Manyama, May 06 2022
MATHEMATICA
nmax = 23; CoefficientList[Series[Exp[-Log[1 - x]^5/5!], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] Abs[StirlingS1[k, 5]] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 23}]
PROG
(PARI) a(n) = sum(k=0, n\5, (5*k)!*abs(stirling(n, 5*k, 1))/(120^k*k!)); \\ Seiichi Manyama, May 06 2022
CROSSREFS
Sequence in context: A354135 A354137 A000482 * A346947 A346924 A145147
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)