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.

A202973 Number of n X 2 0..1 arrays with every nonzero element less than or equal to at least two horizontal and vertical neighbors.

Original entry on oeis.org

1, 2, 4, 7, 14, 31, 69, 155, 354, 814, 1875, 4326, 9993, 23095, 53387, 123430, 285394, 659913, 1525942, 3528541, 8159347, 18867623, 43629460, 100888804, 233295503, 539473228, 1247479743, 2884676711, 6670537293, 15424975984, 35668774074
Offset: 1

Views

Author

R. H. Hardin, Dec 26 2011

Keywords

Comments

Column 2 of A202979.

Examples

			Some solutions for n=5:
..0..0....0..0....1..1....0..0....1..1....0..0....1..1....1..1....1..1....1..1
..0..0....1..1....1..1....1..1....1..1....0..0....1..1....1..1....1..1....1..1
..0..0....1..1....0..0....1..1....0..0....0..0....1..1....1..1....1..0....0..1
..1..1....0..0....1..1....1..1....0..0....0..0....0..0....1..1....1..1....1..1
..1..1....0..0....1..1....0..0....0..0....0..0....0..0....1..1....1..1....1..1
		

Formula

Empirical: a(n) = 3*a(n-1) - 2*a(n-2) + 2*a(n-3) - 2*a(n-4) - a(n-5).
Empirical g.f.: x*(1 - x - 3*x^3 - x^4) / (1 - 3*x + 2*x^2 - 2*x^3 + 2*x^4 + x^5). - Colin Barker, Feb 19 2018