This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A323291 #8 Feb 12 2024 05:56:40 %S A323291 1,1,2,6,12,20,360,2520,1680,15120,151200,554400,9979200,129729600, %T A323291 605404800,27243216000,54486432000,308756448000,5557616064000, %U A323291 8122669632000,351982350720000,22174888095360000,25676186215680000,3740164458750720000,67322960257512960000 %N A323291 Denominator of the sum of inverse products of cycle sizes in all permutations of [n]. %H A323291 Alois P. Heinz, <a href="/A323291/b323291.txt">Table of n, a(n) for n = 0..505</a> %F A323291 E.g.f.: exp(polylog(2,x)) (for fractions A323290(n)/A323291(n)). - _Vaclav Kotesovec_, Feb 12 2024 %p A323291 b:= proc(n) option remember; `if`(n=0, 1, add( %p A323291 b(n-j)*binomial(n-1, j-1)*(j-1)!/j, j=1..n)) %p A323291 end: %p A323291 a:= n-> denom(b(n)): %p A323291 seq(a(n), n=0..25); %t A323291 nmax = 30; Denominator[CoefficientList[Series[Exp[PolyLog[2, x]], {x, 0, nmax}], x] * Range[0, nmax]!] (* _Vaclav Kotesovec_, Feb 12 2024 *) %Y A323291 See A323290 for more information. %K A323291 nonn,frac %O A323291 0,3 %A A323291 _Alois P. Heinz_, Jan 09 2019