cp's OEIS Frontend

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.

A228679 Number of nX4 binary arrays with no two ones adjacent horizontally, diagonally or antidiagonally.

Original entry on oeis.org

8, 40, 216, 1152, 6160, 32928, 176032, 941056, 5030848, 26894720, 143778176, 768632832, 4109082880, 21967006208, 117434808832, 627802177536, 3356207397888, 17942161561600, 95918137153536, 512774840614912
Offset: 1

Views

Author

R. H. Hardin Aug 30 2013

Keywords

Comments

Column 4 of A228683

Examples

			Some solutions for n=4
..0..0..1..0....0..1..0..1....1..0..0..0....0..0..0..1....1..0..0..1
..0..0..0..0....0..0..0..1....0..0..0..1....1..0..0..0....1..0..0..0
..1..0..1..0....1..0..0..0....0..0..0..1....1..0..0..1....0..0..0..0
..1..0..1..0....0..0..0..0....1..0..0..1....1..0..0..0....1..0..0..0
		

Formula

Empirical: a(n) = 6*a(n-1) -2*a(n-2) -8*a(n-3).
Empirical: G.f. -8*x*(-1+x+x^2) / ( 1-6*x+2*x^2+8*x^3 ). - R. J. Mathar, Aug 31 2013