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.

A259853 Denominators of the terms of Lehmer's series S_2(2), where S_k(x) = Sum_{n>=1} n^k*x^n/binomial(2*n, n).

Original entry on oeis.org

1, 3, 5, 35, 63, 77, 429, 6435, 12155, 46189, 88179, 676039, 1300075, 5014575, 215441, 300540195, 583401555, 756261275, 4418157975, 6892326441, 22427411435, 263012370465, 514589420475, 895766768975, 15801325804719, 61989816618513, 121683714103007
Offset: 1

Views

Author

Jean-François Alcover, Jul 07 2015

Keywords

Comments

The first 14 terms are identical to A052468.

Examples

			1/1, 8/3, 18/5, 128/35, 200/63, 192/77, 784/429, ... = A259852/A259853.
		

Crossrefs

Cf. A014307, A052468, A180875, A259852 (numerators).

Programs

  • Mathematica
    Table[2^n*n^2/Binomial[2*n, n] // Denominator, {n, 1, 40}]
  • PARI
    vector(40, n, denominator(n^2*2^n/binomial(2*n,n))) \\ Michel Marcus, Jul 07 2015

Formula

a(n) = denominator(n^2*2^n/C(2*n,n)).