The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A346947 E.g.f.: log( 1 + log(1 + x)^5 / 5! ). 3
1, -15, 175, -1960, 22449, -269451, 3423860, -46238280, 664233856, -10143487354, 164423204582, -2823783679080, 51273355515264, -982236541934430, 19809898439192946, -419752648063849626, 9325875631405818996, -216846992855331506052, 5267598064689049209252 (list; graph; refs; listen; history; text; internal format)
OFFSET
5,2
LINKS
FORMULA
a(n) = Stirling1(n,5) - (1/n) * Sum_{k=1..n-1} binomial(n,k) * Stirling1(n-k,5) * k * a(k).
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 + Log[1 + x]^5/5!], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 5] &
a[n_] := a[n] = StirlingS1[n, 5] - (1/n) Sum[Binomial[n, k] StirlingS1[n - k, 5] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 5, 23}]
CROSSREFS
Sequence in context: A354137 A000482 A347004 * A346924 A145147 A069379
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 08 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 May 15 12:24 EDT 2024. Contains 372540 sequences. (Running on oeis4.)