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 A249277 #20 Feb 16 2025 08:33:24 %S A249277 1,2,24,48,5760,1280,580608,1161216,1393459200,398131200,367873228800, %T A249277 363331584,24103053950976000,4382373445632000,115694658964684800, %U A249277 88995891511296000,726206474732175360000,6455168664286003200 %N A249277 Denominators of fractions appearing in a generalization of Carleman's inequality. %H A249277 Steven R. Finch, <a href="/A219245/a219245.pdf">Carleman's inequality</a>, 2013. [Cached copy, with permission of the author] %H A249277 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/CarlemansInequality.html">Carleman's Inequality</a> %H A249277 Wikipedia, <a href="http://en.wikipedia.org/wiki/Carleman's_inequality">Carleman's inequality</a> %F A249277 b(0) = -1, b(n) = (-1/n)*sum_{k=1..n} b(n-k)/(k+1). %e A249277 Fractions begin -1, 1/2, 1/24, 1/48, 73/5760, 11/1280, 3625/580608, ... %t A249277 b[0] = -1; b[n_] := b[n] = (-1/n)*Sum[b[n - k]/(k + 1), {k, 1, n}]; Table[b[n] // Denominator, {n, 0, 20}] %t A249277 CoefficientList[Series[-(1 - x)^((x - 1)/x)/E, {x, 0, 20}], x] // Denominator (* communicated by _Eric W. Weisstein_, Apr 13 2018, based on result by Michael Trott *) %Y A249277 Cf. A249276 (numerators), A219245, A219246, A219336. %K A249277 nonn,frac %O A249277 0,2 %A A249277 _Jean-François Alcover_, Oct 24 2014