login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A204711
Number of (n+1)X7 0..1 arrays with the permanents of all 2X2 subblocks equal and nonzero
1
193, 1361, 8705, 58449, 382849, 2542369, 16748161, 110871041, 731709057, 4838473473, 31954317953, 211206670209, 1395251843713, 9220409667201, 60918293373569, 402541765541505, 2659689937121921, 17574356285235841
OFFSET
1,1
COMMENTS
Column 6 of A204713
FORMULA
Empirical: a(n) = 4*a(n-1) +45*a(n-2) -126*a(n-3) -642*a(n-4) +1332*a(n-5) +3620*a(n-6) -5624*a(n-7) -6800*a(n-8) +8192*a(n-9).
Empirical formula confirmed by Robert Israel, Jun 11 2018: see link.
EXAMPLE
Some solutions for n=4
..1..0..1..0..1..0..1....0..1..0..1..0..1..1....1..0..1..0..1..1..0
..0..1..0..1..0..1..0....1..0..1..0..1..1..0....0..1..1..1..0..1..1
..1..0..1..1..1..1..1....1..1..1..1..0..1..1....1..1..0..1..1..1..0
..0..1..0..1..0..1..0....0..1..0..1..1..0..1....0..1..1..0..1..0..1
..1..0..1..0..1..1..1....1..0..1..1..0..1..0....1..1..0..1..1..1..1
MAPLE
Configs:= [seq(convert(2^7+i, base, 2)[1..7], i=0..2^7-1)]:
Compatible:= proc(i, j)
if andmap(k -> Configs[i][k]*Configs[j][k+1]+Configs[i][k+1]*Configs[j][k] = 1, [$1..6]) then 1 else 0 fi
end proc:
T:= Matrix(128, 128, Compatible):
u:= Vector[row](128, 1):
v:= Vector(128, 1):
TV[0]:= v:
for n from 1 to 40 do TV[n]:= T . TV[n-1] od:
seq(1+u . TV[n], n=1..40); # Robert Israel, Jun 11 2018
CROSSREFS
Sequence in context: A142564 A174521 A374607 * A125647 A166540 A178265
KEYWORD
nonn
AUTHOR
R. H. Hardin, Jan 18 2012
STATUS
approved