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!)
A346946 E.g.f.: log( 1 + log(1 + x)^4 / 4! ). 4
1, -10, 85, -735, 6734, -66024, 693230, -7774250, 92759821, -1172483598, 15630569591, -218793782025, 3201481037819, -48746860400024, 768683653934928, -12487871805640344, 207761719406853466, -3513910668343842900, 59833161662103132050, -1011244718827893629750 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,2
LINKS
FORMULA
a(n) = Stirling1(n,4) - (1/n) * Sum_{k=1..n-1} binomial(n,k) * Stirling1(n-k,4) * k * a(k).
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 + Log[1 + x]^4/4!], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 4] &
a[n_] := a[n] = StirlingS1[n, 4] - (1/n) Sum[Binomial[n, k] StirlingS1[n - k, 4] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 4, 23}]
CROSSREFS
Sequence in context: A038235 A354390 A354318 * A000454 A347003 A346923
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 April 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)