This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A190535 #16 Jan 03 2016 03:53:48 %S A190535 56,672,13440,443520,23950080,2107607040,301387806720,69921971159040, %T A190535 26290661155799040,16011012643881615360,15786858466867272744960, %U A190535 25195826113120167300956160,65080818850189392138369761280 %N A190535 Number of (n+2) X (n+2) symmetric binary matrices without the pattern 0 1 1 diagonally. %C A190535 From _John M. Campbell_, May 25 2011: (Start) %C A190535 a(n) equals the determinant of the (n+4) X (n+4) "Fibonacci matrix" whose (i,j)-entry is equal to F_{i+1} if i=j and is equal to 1 otherwise. For example, a(2)=672 equals the determinant of the 6 X 6 Fibonacci matrix %C A190535 {{1,1,1,1,1,1}, %C A190535 {1,2,1,1,1,1}, %C A190535 {1,1,3,1,1,1}, %C A190535 {1,1,1,5,1,1}, %C A190535 {1,1,1,1,8,1}, %C A190535 {1,1,1,1,1,13}}. (End) %H A190535 R. H. Hardin, <a href="/A190535/b190535.txt">Table of n, a(n) for n = 1..60</a> %e A190535 Some solutions for 4 X 4: %e A190535 ..0..1..0..1....1..1..1..1....0..1..1..0....0..1..1..1....1..1..1..1 %e A190535 ..1..0..0..0....1..0..0..0....1..1..1..0....1..1..0..1....1..0..0..1 %e A190535 ..0..0..0..0....1..0..0..0....1..1..0..1....1..0..0..1....1..0..0..0 %e A190535 ..1..0..0..0....1..0..0..1....0..0..1..1....1..1..1..0....1..1..0..0 %t A190535 Table[Det[Array[KroneckerDelta[#1,#2](Fibonacci[#1+1]-1)+1&,{n,n}]],{n,5,20}] (* _John M. Campbell_, May 25 2011 *) %o A190535 (PARI) a(n) = matdet(matrix(n+4, n+4, i, j, if (i==j, fibonacci(i+1), 1))); \\ _Michel Marcus_, Jan 03 2016 %K A190535 nonn %O A190535 1,1 %A A190535 _R. H. Hardin_, May 12 2011