cp's OEIS Frontend

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.

Showing 1-1 of 1 results.

A249276 Numerators of fractions appearing in a generalization of Carleman's inequality.

Original entry on oeis.org

-1, 1, 1, 1, 73, 11, 3625, 5525, 5233001, 1212281, 927777937, 772193, 43791735453787, 6889178449747, 158996102434867, 107876982981287, 782501215247703271, 6225541612992329, 235541803917995571502409
Offset: 0

Views

Author

Jean-François Alcover, Oct 24 2014

Keywords

Examples

			Fractions begin -1, 1/2, 1/24, 1/48, 73/5760, 11/1280, 3625/580608, ...
		

Crossrefs

Cf. A249277 (denominators), A219245, A219246, A219336.

Programs

  • Mathematica
    b[0] = -1; b[n_] := b[n] = (-1/n)*Sum[b[n - k]/(k + 1), {k, 1, n}]; Table[b[n] // Numerator, {n, 0, 20}]
    CoefficientList[Series[-(1 - x)^(-(1 - x)/x)/E, {x, 0, 20}], x] // Numerator (* Eric W. Weisstein, Apr 13 2018 *)

Formula

sum_{k >= 1} (a_1 a_2 ... a_k)^(1/k) < e*sum_{k >= 1} (1-sum_{j=1..m} b_j/(k+1)^j)*a_k, where a_k >= 0 for all k and a_l > 0 for at least one l, m being any positive integer.
b(0) = -1, b(n) = (-1/n)*sum_{k=1..n} b(n-k)/(k+1).
Showing 1-1 of 1 results.