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.

A328044 Number of chains of binary matrices of order n.

Original entry on oeis.org

1, 3, 299, 28349043, 21262618727925419, 426789461753903103302333992563, 576797123806621878513443912437627670334052360619, 110627172261659730424051586605958905845740712964061737226074854597705843
Offset: 0

Views

Author

S. R. Kannan, Rajesh Kumar Mohapatra, Oct 03 2019

Keywords

Comments

For n >= 1, a(n) is the number of chains of n X n (0, 1) matrices.
a(n) is also the number of chains in the power set of n^2 elements.
a(n) is the n^2-th term of A007047.
A chain of binary (crisp or Boolean or logical) matrices of order n can be thought of as a fuzzy matrix of order n.
a(n) is the number of distinct n X n fuzzy matrices.
a(n) is the sum of the n^2-th row of triangle A038719.

Crossrefs

Cf. A000079 (subsets of an n-set), A007047 (chains in power set of an n-set).
Cf. A000290 (squares), A002416 (binary relations on an n-set), A038719 (chains of length k in poset).

Programs

Formula

Let T(n, k) denote the number of chains of binary matrices of order n of length k, T(0, 0) = 1, T(0, k) = 0 for k > 0, thus T(n, k) = A038719(n, k).
a(n) = Sum_{k=0..n^2} T(n, k); a(0) = 1.
a(n) = A007047(n^2) = A007047(A000290(n)).