A201277 T(n,k) = number of n X k 0..2 arrays with every row and column nondecreasing rightwards and downwards, and the number of instances of each value within one of each other.
3, 3, 3, 1, 5, 1, 3, 4, 4, 3, 3, 12, 7, 12, 3, 1, 16, 14, 14, 16, 1, 3, 9, 21, 85, 21, 9, 3, 3, 27, 41, 199, 199, 41, 27, 3, 1, 33, 54, 143, 556, 143, 54, 33, 1, 3, 16, 86, 740, 442, 442, 740, 86, 16, 3, 3, 48, 120, 1274, 2827, 1260, 2827, 1274, 120, 48, 3, 1, 56, 168, 759, 5680
Offset: 1
Examples
Some solutions for n=7 k=5 ..0..0..0..0..0....0..0..0..0..0....0..0..0..0..0....0..0..0..0..1 ..0..0..0..1..1....0..0..0..0..1....0..0..0..0..2....0..0..0..1..1 ..0..1..1..1..1....0..0..1..1..1....0..0..0..1..2....0..0..0..1..2 ..0..1..2..2..2....1..1..2..2..2....1..1..1..1..2....0..0..1..2..2 ..0..1..2..2..2....1..1..2..2..2....1..1..1..2..2....1..1..1..2..2 ..0..1..2..2..2....1..1..2..2..2....1..1..2..2..2....1..1..2..2..2 ..1..1..2..2..2....1..1..2..2..2....1..2..2..2..2....1..2..2..2..2
Links
- R. H. Hardin, Table of n, a(n) for n = 1..684
Crossrefs
Formula
T(n,1) = binomial(3,n modulo 3). For a 0..z array, T(n,1) = binomial(z+1, n modulo (z+1)).
Comments