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.
%I A204250 #7 Jun 29 2017 15:54:39 %S A204250 1,3,3,5,6,5,7,9,9,7,9,12,13,12,9,11,15,17,17,15,11,13,18,21,22,21,18, %T A204250 13,15,21,25,27,27,25,21,15,17,24,29,32,33,32,29,24,17,19,27,33,37,39, %U A204250 39,37,33,27,19,21,30,37,42,45,46,45,42,37,30,21,23,33,41,47 %N A204250 Symmetric matrix read by antidiagonals given by T(i,j)=i*j+i+j-2. %H A204250 David Singmaster, David Fielker, N. J. A. Sloane, <a href="/A004116/a004116.pdf">Correspondence, August 1979</a> %e A204250 Northwest corner: %e A204250 1...3...5....7....9 %e A204250 3...6...9....12...15 %e A204250 5...9...13...17...21 %e A204250 7...12..17...22...27 %t A204250 f[i_, j_] := i*j + i + j - 2; %t A204250 m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}] %t A204250 TableForm[m[5]] (* 5x5 principal submatrix *) %t A204250 Flatten[Table[f[i, n + 1 - i], %t A204250 {n, 1, 12}, {i, 1, n}]] (* A204250 *) %t A204250 Permanent[m_] := %t A204250 With[{a = Array[x, Length[m]]}, %t A204250 Coefficient[Times @@ (m.a), Times @@ a]]; %t A204250 Table[Permanent[m[n]], {n, 1, 14}] (* A204251 *) %Y A204250 Cf. A204251. %K A204250 nonn,tabl %O A204250 1,2 %A A204250 _Clark Kimberling_, Jan 14 2012