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.

Showing 1-1 of 1 results.

A137252 Triangle T(n,k) read by rows: number of k X k triangular (0,1)-matrices with exactly n entries equal to 1 and no zero rows or columns.

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 4, 1, 0, 0, 0, 4, 11, 1, 0, 0, 0, 1, 33, 26, 1, 0, 0, 0, 0, 42, 171, 57, 1, 0, 0, 0, 0, 26, 507, 718, 120, 1, 0, 0, 0, 0, 8, 840, 4017, 2682, 247, 1, 0, 0, 0, 0, 1, 865, 12866, 25531, 9327, 502, 1, 0, 0, 0, 0, 0, 584, 26831, 138080, 141904, 30973, 1013, 1
Offset: 0

Views

Author

Vladeta Jovovic, Mar 11 2008

Keywords

Examples

			Triangle T(n,k) begins:
  1;
  0, 1;
  0, 0, 1;
  0, 0, 1, 1;
  0, 0, 0, 4,  1;
  0, 0, 0, 4, 11,   1;
  0, 0, 0, 1, 33,  26,   1;
  0, 0, 0, 0, 42, 171,  57,   1;
  0, 0, 0, 0, 26, 507, 718, 120,  1;
  ...
		

Crossrefs

Cf. A138265 (row sums), A005321 (column sums), A135589.
T(2n,n) gives A357140.

Formula

G.f.: Sum(Product(1-1/(1+((1+x)^i-1)*y), i=1..n), n=0..infinity).
Showing 1-1 of 1 results.