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.

A174413 Triangle T(n,m) with the denominator of 1/(n-m)^2-1/n^2, read by rows, 1<=m

Original entry on oeis.org

4, 36, 9, 144, 16, 16, 400, 225, 100, 25, 900, 144, 12, 9, 36, 1764, 1225, 784, 441, 196, 49, 3136, 576, 1600, 64, 576, 64, 64, 5184, 3969, 324, 2025, 1296, 81, 324, 81, 8100, 1600, 4900, 225, 100, 400, 900, 25, 100, 12100, 9801, 7744, 5929, 4356, 3025, 1936, 1089, 484, 121
Offset: 2

Views

Author

Paul Curtz, Mar 19 2010

Keywords

Comments

Obtained by deleting the last entry in each row of A061036 or by reversing rows in A120073.

Examples

			Triangle T(n,m) begins:
     4,
    36,    9,
   144,   16,   16,
   400,  225,  100,  25,
   900,  144,   12,   9,  36,
  1764, 1225,  784, 441, 196, 49,
  3136,  576, 1600,  64, 576, 64, 64,
		

Crossrefs

Cf. A165441, A172370 (numerators).

Programs

  • Maple
    A174413 := proc(n,m) 1/(n-m)^2-1/n^2 ; denom(%) ; end proc:
    seq(seq(A174413(n, k), k=1..n-1), n=2..11); # R. J. Mathar, Jan 27 2011
  • Mathematica
    T[n_, m_] := Denominator[1/(n - m)^2 - 1/n^2];
    Table[T[n, m], {n, 2, 11}, {m, 1, n-1}] // Flatten (* Jean-François Alcover, May 18 2018 *)