A201072 T(n,k)=Number of nXk 0..6 arrays with every row and column nondecreasing rightwards and downwards, and the number of instances of each value within one of each other.
7, 21, 21, 35, 70, 35, 35, 35, 35, 35, 21, 77, 514, 77, 21, 7, 749, 2611, 2611, 749, 7, 1, 972, 3937, 22440, 3937, 972, 1, 7, 127, 50334, 43308, 43308, 50334, 127, 7, 21, 3034, 4448, 1127514, 2250982, 1127514, 4448, 3034, 21, 35, 7161, 381982, 175865
Offset: 1
Examples
Some solutions for n=3 k=7 ..0..0..1..1..3..4..5....0..0..1..1..3..4..4....0..0..1..1..2..4..4 ..0..2..2..3..4..5..6....0..2..2..3..3..5..6....0..1..3..3..4..5..5 ..1..2..3..4..5..6..6....1..2..4..5..5..6..6....2..2..3..5..6..6..6
Links
- R. H. Hardin, Table of n, a(n) for n = 1..143
Formula
T(n,1) = binomial(7,n modulo 7). For a 0..z array, T(n,1) = binomial(z+1, n modulo (z+1)).
Comments