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!)
A346944 E.g.f.: log( 1 + log(1 + x)^2 / 2 ). 4
1, -3, 8, -20, 49, -189, 1791, -21132, 228306, -2274690, 22190772, -230289696, 2756380782, -38757988710, 608149754538, -10057914084048, 171037444641816, -3000345245061048, 55157102668064592, -1077263181846230400, 22411300073192730360, -492846784406541548280 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
FORMULA
a(n) = Stirling1(n,2) - (1/n) * Sum_{k=1..n-1} binomial(n,k) * Stirling1(n-k,2) * k * a(k).
MATHEMATICA
nmax = 23; CoefficientList[Series[Log[1 + Log[1 + x]^2/2], {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 2] &
a[n_] := a[n] = StirlingS1[n, 2] - (1/n) Sum[Binomial[n, k] StirlingS1[n - k, 2] k a[k], {k, 1, n - 1}]; Table[a[n], {n, 2, 23}]
CROSSREFS
Sequence in context: A330458 A093963 A261233 * A027219 A085831 A332846
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 2 16:14 EDT 2024. Contains 372197 sequences. (Running on oeis4.)