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

This page as a plain text file.
%I A174413 #24 Sep 04 2019 21:07:15
%S A174413 4,36,9,144,16,16,400,225,100,25,900,144,12,9,36,1764,1225,784,441,
%T A174413 196,49,3136,576,1600,64,576,64,64,5184,3969,324,2025,1296,81,324,81,
%U A174413 8100,1600,4900,225,100,400,900,25,100,12100,9801,7744,5929,4356,3025,1936,1089,484,121
%N A174413 Triangle T(n,m) with the denominator of 1/(n-m)^2-1/n^2, read by rows, 1<=m<n.
%C A174413 Obtained by deleting the last entry in each row of A061036 or by reversing rows in A120073.
%H A174413 Alois P. Heinz, <a href="/A174413/b174413.txt">Table of n, a(n) for n = 2..2017</a>
%e A174413 Triangle T(n,m) begins:
%e A174413      4,
%e A174413     36,    9,
%e A174413    144,   16,   16,
%e A174413    400,  225,  100,  25,
%e A174413    900,  144,   12,   9,  36,
%e A174413   1764, 1225,  784, 441, 196, 49,
%e A174413   3136,  576, 1600,  64, 576, 64, 64,
%p A174413 A174413 := proc(n,m) 1/(n-m)^2-1/n^2 ; denom(%) ; end proc:
%p A174413 seq(seq(A174413(n, k), k=1..n-1), n=2..11); # _R. J. Mathar_, Jan 27 2011
%t A174413 T[n_, m_] := Denominator[1/(n - m)^2 - 1/n^2];
%t A174413 Table[T[n, m], {n, 2, 11}, {m, 1, n-1}] // Flatten (* _Jean-François Alcover_, May 18 2018 *)
%Y A174413 Cf. A165441, A172370 (numerators).
%K A174413 nonn,frac,tabl,look,easy
%O A174413 2,1
%A A174413 _Paul Curtz_, Mar 19 2010