A268019 T(n,k)=Number of nXk 0..2 arrays with every repeated value in every row and column greater than or equal to the previous repeated value.
3, 9, 9, 27, 81, 27, 78, 729, 729, 78, 222, 6084, 19683, 6084, 222, 622, 49284, 474552, 474552, 49284, 622, 1722, 386884, 10941048, 31831908, 10941048, 386884, 1722, 4719, 2965284, 240641848, 2012075697, 2012075697, 240641848, 2965284, 4719
Offset: 1
Examples
Some solutions for n=3 k=4 ..0..1..1..0....0..2..1..2....0..0..2..1....0..0..2..2....0..1..2..1 ..0..1..0..0....0..2..1..1....0..1..0..0....1..1..1..2....0..1..1..1 ..0..1..2..1....1..0..2..0....0..1..0..1....1..0..1..0....1..2..2..1
Links
- R. H. Hardin, Table of n, a(n) for n = 1..84
Formula
Empirical for column k:
k=1: a(n) = 6*a(n-1) -9*a(n-2) -4*a(n-3) +9*a(n-4) +6*a(n-5) +a(n-6)
k=2: [order 15]
k=3: [order 28]
Comments