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.

A347699 Triangle read by rows: For n >= 1, 0 <= k <= n-1, T(n,k) = 0 if k=0, otherwise the number of inequivalent k X (n-k) 0,1 matrices having at least one 1 in each column.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 6, 9, 4, 1, 1, 9, 23, 17, 5
Offset: 1

Views

Author

N. J. A. Sloane, Oct 13 2021

Keywords

Comments

It appears that this is essentially the same as the triangle in A055080, except that the 1's at the ends of the rows in A055080 have been moved to the start of the rows. (This is at present only a conjecture.)
Even if the conjecture turns out to be true, this triangle deserves its own entry because the arrays look so different.
The conjecture would imply the row sums are given by A048194.

Examples

			Triangle begins:
  1;
  1,  1;
  1,  1,  2;
  1,  1,  4,  3;
  1,  1,  6,  9,  4;
  1,  1,  9, 23, 17,  5;
...
		

Crossrefs