OFFSET
0,4
COMMENTS
A South-East path of 1's in a binary matrix is a path of connected 1's with steps South (0,-1) and East (1,0). Here 1's are said to be connected if they are adjacent in the same row or column.
Conjecture: The average number of South-East paths of 1's in all n X n binary matrices is A001790(n-1)/A101926(n-1). - John Tyler Rascoe, Feb 21 2025
LINKS
John Tyler Rascoe, Rows n = 0..5, flattened
John Tyler Rascoe, Python program.
EXAMPLE
Triangle begins:
k=0 1 2 3 4 5 6
n=0 1;
n=1 1, 1;
n=2 13, 2, 1;
n=3 461, 26, 13, 8, 1, 2, 1;
...
For row n = 3 the possible South-East paths are:
A. B. C. D. E. F.
[1 1 1] [1 1 0] [1 1 0] [1 0 0] [1 0 0] [1 0 0]
[0 0 1] [0 1 1] [0 1 0] [1 1 1] [1 1 0] [1 0 0]
[0 0 1] [0 0 1] [0 1 1] [0 0 1] [0 1 1] [1 1 1]
The 3 X 3 matrix below does not contain any of the paths A-F so it is counted under T(3,0) = 461.
[1 0 1]
[1 1 1]
[1 0 0]
The 3 X 3 matrix below contains paths A, B, and D so it is counted under T(3,3) = 8.
[1 1 1]
[1 1 1]
[1 0 1]
PROG
(Python) # see links
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
John Tyler Rascoe, Jan 23 2025
STATUS
approved