A241114 T(n,k)=Number of nXk 0..2 arrays with no element equal to exactly three horizontal or vertical neighbors, with new values 0..2 introduced in row major order.
1, 2, 2, 5, 14, 5, 14, 113, 113, 14, 41, 953, 2612, 953, 41, 122, 8037, 60340, 60340, 8037, 122, 365, 67774, 1394492, 3829419, 1394492, 67774, 365, 1094, 571530, 32228144, 242964166, 242964166, 32228144, 571530, 1094, 3281, 4819638, 744822776
Offset: 1
Examples
Some solutions for n=3 k=4 ..0..0..1..2....0..0..1..1....0..0..0..0....0..1..0..2....0..1..1..2 ..0..2..2..1....1..2..2..1....0..1..2..0....0..2..2..0....0..1..2..0 ..2..1..0..2....1..1..1..2....2..1..1..2....1..0..0..1....0..2..0..2
Links
- R. H. Hardin, Table of n, a(n) for n = 1..112
Formula
Empirical for column k:
k=1: a(n) = 4*a(n-1) -3*a(n-2)
k=2: a(n) = 8*a(n-1) +4*a(n-2) -2*a(n-3) -8*a(n-4) for n>6
k=3: [order 12] for n>13
k=4: [order 42] for n>43
Comments