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.

A257045 Denominators of Apéry's rational approximations p_n/q_n to zeta(3).

Original entry on oeis.org

1, 5, 292, 52020, 9504288, 29484180000, 17168660000, 801669704780000, 35930841355360000, 1250077234358967840000, 36426677336311407264000, 11464402743063221545440000, 42860453128110714373355232000
Offset: 0

Views

Author

Jean-François Alcover, Apr 15 2015

Keywords

Examples

			0, 6/5,  351/292,  62531/52020, 11424695/9504288, 35441662103/29484180000, ...
0, 1.2, 1.202..., 1.2020569...,   1.202056903...,        1.20205690316..., ...
		

Crossrefs

Programs

  • Mathematica
    p[n_] := Sum[Binomial[n+k, k]^2*Binomial[n, k]^2*(Sum[1/m^3, {m, 1, n}] + Sum[ (-1)^(m-1)/(2*m^3*Binomial[n, m]*Binomial[m+n, m]), {m, 1, k}]), {k, 0, n}]; q[n_] := Sum[Binomial[n+k, k]^2*Binomial[n, k]^2, {k, 0, n}]; Table[p[n]/q[n], {n, 0, 12}] // Denominator

Formula

See Mathematica script.