Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #4 Feb 27 2017 09:01:44
%S 0,0,0,1,4,1,2,16,16,2,5,68,119,68,5,12,256,818,818,256,12,26,924,
%T 5065,9152,5065,924,26,56,3232,30378,94368,94368,30378,3232,56,118,
%U 11044,175963,931844,1604067,931844,175963,11044,118,244,37104,997302,8912378
%N T(n,k)=Number of nXk 0..1 arrays with no 1 equal to more than one of its horizontal and vertical neighbors, with the exception of exactly one element.
%C Table starts
%C ...0......0........1..........2.............5..............12................26
%C ...0......4.......16.........68...........256.............924..............3232
%C ...1.....16......119........818..........5065...........30378............175963
%C ...2.....68......818.......9152.........94368..........931844...........8912378
%C ...5....256.....5065......94368.......1604067........26180826.........414085368
%C ..12....924....30378.....931844......26180826.......706205768.......18455711930
%C ..26...3232...175963....8912378.....414085368.....18455711930......797350288363
%C ..56..11044...997302...83420984....6406597648....471954803540....33705434438284
%C .118..37104..5559013..767704036...97480211225..11868995624930..1401215705047092
%C .244.122984.30578068.6973000128.1463896864692.294610925837548.57496998569457406
%H R. H. Hardin, <a href="/A283042/b283042.txt">Table of n, a(n) for n = 1..220</a>
%F Empirical for column k:
%F k=1: a(n) = 2*a(n-1) +a(n-2) -3*a(n-4) -2*a(n-5) -a(n-6)
%F k=2: a(n) = 4*a(n-1) +2*a(n-2) -12*a(n-3) -11*a(n-4) +4*a(n-5) +6*a(n-6) -a(n-8)
%F k=3: [order 18]
%F k=4: [order 30]
%F k=5: [order 72]
%e Some solutions for n=4 k=4
%e ..0..0..1..0. .1..0..0..0. .1..0..1..0. .0..0..1..1. .1..0..0..1
%e ..1..0..1..0. .1..1..0..0. .0..1..1..1. .0..1..0..0. .0..1..0..1
%e ..0..0..1..0. .0..0..1..0. .1..0..1..0. .1..0..1..0. .0..1..0..1
%e ..1..0..0..0. .1..0..1..0. .1..0..0..0. .1..1..0..0. .0..0..0..0
%Y Column 1 is A073778(n-1).
%K nonn,tabl
%O 1,5
%A _R. H. Hardin_, Feb 27 2017