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 A213558 #14 Apr 11 2013 17:16:05 %S A213558 1,16,8,118,91,27,560,496,280,64,2003,1878,1366,637,125,5888,5672, %T A213558 4672,2944,1216,216,14988,14645,12917,9542,5446,2071,343,34176,33664, %U A213558 30920,25088,17088,9088,3256,512,71445,70716,66620,57359,43535 %N A213558 Rectangular array: (row n) = b**c, where b(h) = h^3, c(h) = (n-1+h)^3, n>=1, h>=1, and ** = convolution. %C A213558 Principal diagonal: A213559 %C A213558 Antidiagonal sums: A213560 %C A213558 Row 1, (1,8,27,...)**(1,8,27,...): A145216 %C A213558 For a guide to related arrays, see A213500. %H A213558 Clark Kimberling, <a href="/A213558/b213558.txt">Antidiagonals n = 1..60, flattened</a> %H A213558 Henri Muehle, <a href="http://arxiv.org/abs/1301.1654">Proper Mergings of Stars and Chains are Counted by Sums of Antidiagonals in Certain Convolution Arrays -- The Details</a>, arXiv preprint arXiv:1301.1654, 2013. %F A213558 T(n,k) = 8*T(n,k-1) - 28*T(n,k-2) + 56*T(n,k-3) - 70*T(n,k-4) + 56*T(n,k-5) - 28*T(n,k-6) + 8*T(n,k-7) - T(n,k-8). %F A213558 G.f. for row n: f(x)/g(x), where f(x) = n^3 + ((n + 1)^3)*x + (-8*n^3 + 6*n^2 + 12*n + 8)*x^2 + (8*n^3 - 18*n^2 + 18)*x^3 - ((n - 2)^3)*x^4 - ((n + 1)^3)*x^5 and g(x) = (1 - x)^8. %e A213558 Northwest corner (the array is read by falling antidiagonals): %e A213558 1.....16.....118....560.....2003 %e A213558 8.....91.....496....1878....5672 %e A213558 27....280....1366...4672....12917 %e A213558 64....637....2944...9542....25088 %e A213558 125...1216...5446...17088...43535 %t A213558 b[n_] := n^3; c[n_] := n^3 %t A213558 t[n_, k_] := Sum[b[k - i] c[n + i], {i, 0, k - 1}] %t A213558 TableForm[Table[t[n, k], {n, 1, 10}, {k, 1, 10}]] %t A213558 Flatten[Table[t[n - k + 1, k], {n, 12}, {k, n, 1, -1}]] %t A213558 r[n_] := Table[t[n, k], {k, 1, 60}] (* A213558 *) %t A213558 d = Table[t[n, n], {n, 1, 40}] (* A213559 *) %t A213558 s[n_] := Sum[t[i, n + 1 - i], {i, 1, n}] %t A213558 s1 = Table[s[n], {n, 1, 50}] (* A213560 *) %Y A213558 Cf. A213500. %K A213558 nonn,tabl,easy %O A213558 1,2 %A A213558 _Clark Kimberling_, Jun 17 2012