cp's OEIS Frontend

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.

A229706 Triangular array read by rows: T(n,k) is the number of unimodal compositions of n with greatest part equal to k; n>=1, 1<=k<=n.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 4, 2, 1, 1, 6, 5, 2, 1, 1, 9, 9, 5, 2, 1, 1, 12, 16, 10, 5, 2, 1, 1, 16, 25, 19, 10, 5, 2, 1, 1, 20, 39, 32, 20, 10, 5, 2, 1, 1, 25, 56, 54, 35, 20, 10, 5, 2, 1, 1, 30, 80, 84, 61, 36, 20, 10, 5, 2, 1, 1, 36, 109, 129, 99, 64, 36, 20, 10, 5, 2, 1
Offset: 1

Views

Author

Geoffrey Critzer, Sep 27 2013

Keywords

Comments

A unimodal composition is a composition such that for some j, m, 1 <= x(1) <= x(2) <= ... <= x(j) >= x(j+1) >= ... >= x(m) >= 1.
Row sums are A001523.
T(2*n+1,n+1) = A000712(n) for n>=0. - Alois P. Heinz, Oct 03 2013

Examples

			1;
1,  1;
1,  2,  1;
1,  4,  2,  1;
1,  6,  5,  2,  1;
1,  9,  9,  5,  2,  1;
1, 12, 16, 10,  5,  2,  1;
1, 16, 25, 19, 10,  5,  2, 1;
1, 20, 39, 32, 20, 10,  5, 2, 1;
1, 25, 56, 54, 35, 20, 10, 5, 2, 1;
T(5,3) = 5 because we have: 3+2 = 2+3 = 3+1+1 = 1+3+1 = 1+1+3.
		

References

  • E. M. Wright, Stacks, Quart. J. Math. Oxford 19 (1968) 313-320, table s(r).

Crossrefs

Cf. A229707.

Programs

  • Maple
    b:= proc(n, t, k) option remember; `if`(n=0, `if`(k=0, 1, 0),
          `if`(k>0, `if`(n b(n, 1, k):
    seq(seq(T(n, k), k=1..n), n=1..16);  # Alois P. Heinz, Oct 03 2013
  • Mathematica
    Map[Select[#,#>0&]&,Drop[Transpose[Table[CoefficientList[Series[x^n/(1-x^n)/Product[1-x^i,{i,1,n-1}]^2,{x,0,nn}],x],{n,1,nn}]],1]]//Grid

Formula

O.g.f. for column k: x^k/prod(i=1..k-1, 1-x^i )^2.