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 A096144 #26 Dec 05 2015 19:17:36 %S A096144 1,1,1,2,0,1,2,2,0,1,4,1,1,0,1,4,3,2,1,0,1,7,3,2,1,1,0,1,8,6,2,3,1,1, %T A096144 0,1,12,5,6,2,2,1,1,0,1,14,11,5,4,3,2,1,1,0,1,21,11,8,5,4,2,2,1,1,0,1, %U A096144 24,17,11,9,4,5,2,2,1,1,0,1,34,20,15,9,8,4,4,2,2,1,1,0,1,41,30,18,14,9,7,5,4,2,2,1,1,0,1 %N A096144 Triangle T(n,k) = number of partitions of n in which the least part occurs exactly k times, k=1..n. %C A096144 Reversed rows converge to A002865. - _Joerg Arndt_, Jul 07 2014 %C A096144 T(n,k) is the number of partitions of n for which the difference between the two largest distinct parts is k (in partitions having only 1 part, we assume that 0 is also a part). This follows easily from the definition by taking the conjugate partitions. Example: T(7,2) = 3 because we have [3,1,1,1,1], [3,3,1], and [4,2,1]. - _Emeric Deutsch_, Dec 05 2015. %H A096144 Alois P. Heinz, <a href="/A096144/b096144.txt">Rows n = 1..141, flattened</a> %F A096144 G.f. for k-th column: sum(m>=1, x^(k*m)/prod(i>=m+1, 1-x^i ) ). %e A096144 Triangle starts: %e A096144 01: 1 %e A096144 02: 1 1 %e A096144 03: 2 0 1 %e A096144 04: 2 2 0 1 %e A096144 05: 4 1 1 0 1 %e A096144 06: 4 3 2 1 0 1 %e A096144 07: 7 3 2 1 1 0 1 %e A096144 08: 8 6 2 3 1 1 0 1 %e A096144 09: 12 5 6 2 2 1 1 0 1 %e A096144 10: 14 11 5 4 3 2 1 1 0 1 %e A096144 11: 21 11 8 5 4 2 2 1 1 0 1 %e A096144 12: 24 17 11 9 4 5 2 2 1 1 0 1 %e A096144 13: 34 20 15 9 8 4 4 2 2 1 1 0 1 %e A096144 14: 41 30 18 14 9 7 5 ... %e A096144 T(7,2)=3 because we have: 5+1+1, 3+2+2, 3+2+1+1. - _Geoffrey Critzer_, Jun 20 2014 %p A096144 b:= proc(n, i) option remember; `if`(i=1, x^n, %p A096144 `if`(irem(n, i, 'k')=0, x^k, 0)+ %p A096144 add(b(n-i*j, i-1), j=0..(n-1)/i)) %p A096144 end: %p A096144 T:= n-> (p-> seq(coeff(p, x, i), i=1..n))(b(n$2)): %p A096144 seq(T(n), n=1..20); # _Alois P. Heinz_, Jun 20 2014 %t A096144 nn=20;Table[Take[Map[Drop[#,1]&,Drop[CoefficientList[Series[Sum[y x^k/(1-y x^k) Product[1/(1- x^j),{j,k+1,nn}],{k,1,nn}],{x,0,nn}],{x,y}],1]][[i]],i],{i,1,nn}]//Grid (* _Geoffrey Critzer_, Jun 20 2014 *) %Y A096144 Cf. A002865 (first column), A096373 (second column), A000041 (row sums). %Y A096144 T(2n,n) gives A232697(n). - _Alois P. Heinz_, Jun 20 2014 %K A096144 easy,nonn,tabl %O A096144 1,4 %A A096144 _Vladeta Jovovic_, Jul 24 2004