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 A247255 #31 Oct 24 2018 16:34:35 %S A247255 1,1,1,3,0,1,6,1,0,1,12,2,0,0,1,21,4,1,0,0,1,38,6,2,0,0,0,1,63,11,3,1, %T A247255 0,0,0,1,106,16,5,2,0,0,0,0,1,170,27,7,3,1,0,0,0,0,1,272,40,11,4,2,0, %U A247255 0,0,0,0,1,422,63,16,6,3,1,0,0,0,0,0,1,653,92,24,8,4,2,0,0,0,0,0,0,1,986,141,34,12,5,3,1,0,0,0,0,0,0,1 %N A247255 Triangular array read by rows: T(n,k) is the number of weakly unimodal partitions of n in which the greatest part occurs exactly k times, n>=1, 1<=k<=n. %C A247255 These are called stack polyominoes in the Flajolet and Sedgewick reference. %D A247255 P. Flajolet and R Sedgewick, Analytic Combinatorics, Cambridge Univ. Press, 2009, page 46. %H A247255 Alois P. Heinz, <a href="/A247255/b247255.txt">Rows n = 1..141, flattened</a> %F A247255 G.f.: Sum_{k>=1} y*x^k/(1 - y*x^k)/(Product_{i=1..k-1} (1 - x^i))^2. %F A247255 For fixed k>=1, T(n,k) ~ Pi^(k-1) * (k-1)! * exp(2*Pi*sqrt(n/3)) / (2^(k+2) * 3^(k/2 + 1/4) * n^(k/2 + 3/4)). - _Vaclav Kotesovec_, Oct 24 2018 %e A247255 1; %e A247255 1, 1; %e A247255 3, 0, 1; %e A247255 6, 1, 0, 1; %e A247255 12, 2, 0, 0, 1; %e A247255 21, 4, 1, 0, 0, 1; %e A247255 38, 6, 2, 0, 0, 0, 1; %e A247255 63, 11, 3, 1, 0, 0, 0, 1; %e A247255 106, 16, 5, 2, 0, 0, 0, 0, 1; %e A247255 170, 27, 7, 3, 1, 0, 0, 0, 0, 1; %p A247255 b:= proc(n, i) option remember; local r; expand( %p A247255 `if`(i>n, 0, `if`(irem(n, i, 'r')=0, x^r, 0)+ %p A247255 add(b(n-i*j, i+1)*(j+1), j=0..n/i))) %p A247255 end: %p A247255 T:= n-> (p-> seq(coeff(p, x, i), i=1..n))(b(n, 1)): %p A247255 seq(T(n), n=1..14); # _Alois P. Heinz_, Nov 29 2014 %t A247255 nn = 14; Table[ %t A247255 Take[Drop[ %t A247255 CoefficientList[ %t A247255 Series[ Sum[ %t A247255 u z^k/(1 - u z^k) Product[1/(1 - z^i), {i, 1, k - 1}]^2, {k, %t A247255 1, nn}], {z, 0, nn}], {z, u}], 1], n, {2, n + 1}][[n]], {n, %t A247255 1, nn}] // Grid %Y A247255 Columns k=1-10 give: A006330, A114921, A226541, A320315, A320316, A320317, A320318, A320319, A320320, A320321. %Y A247255 Row sums give A001523. %Y A247255 Main diagonal gives A000012. %K A247255 nonn,tabl %O A247255 1,4 %A A247255 _Geoffrey Critzer_, Nov 29 2014