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 A221833 #8 Jan 26 2013 19:20:56 %S A221833 1,0,1,0,1,1,0,0,2,1,0,0,3,3,1,0,0,2,6,4,1,0,0,1,10,10,5,1,0,0,0,12, %T A221833 20,15,6,1,0,0,0,12,35,35,21,7,1,0,0,0,10,52,70,56,28,8,1,0,0,0,6,68, %U A221833 126,126,84,36,9,1,0,0,0,3,80,205,252,210,120,45,10,1 %N A221833 Triangle, read by rows, where T(n,k) = [x^n] x^k*(1-x^k)^(k-1) / (1-x)^(k-1) for n>=k>=1. %F A221833 G.f. of column k = x^k * ( (1-x^k)/(1-x) )^(k-1). %e A221833 Triangle begins: %e A221833 1; %e A221833 0, 1; %e A221833 0, 1, 1; %e A221833 0, 0, 2, 1; %e A221833 0, 0, 3, 3, 1; %e A221833 0, 0, 2, 6, 4, 1; %e A221833 0, 0, 1, 10, 10, 5, 1; %e A221833 0, 0, 0, 12, 20, 15, 6, 1; %e A221833 0, 0, 0, 12, 35, 35, 21, 7, 1; %e A221833 0, 0, 0, 10, 52, 70, 56, 28, 8, 1; %e A221833 0, 0, 0, 6, 68, 126, 126, 84, 36, 9, 1; %e A221833 0, 0, 0, 3, 80, 205, 252, 210, 120, 45, 10, 1; %e A221833 0, 0, 0, 1, 85, 305, 462, 462, 330, 165, 55, 11, 1; %e A221833 0, 0, 0, 0, 80, 420, 786, 924, 792, 495, 220, 66, 12, 1; ... %e A221833 in which column sums equal: A000169(k) = k^(k-1) for k>=1. %o A221833 (PARI) {T(n,k)=polcoeff(((1-x^k)/(1-x +x*O(x^n)))^(k-1),n-k)} %o A221833 for(n=1,12,for(k=1,n,print1(T(n,k),", "));print("")) %Y A221833 Cf. A221834, A000169, A077227. %K A221833 nonn,tabl %O A221833 1,9 %A A221833 _Paul D. Hanna_, Jan 26 2013