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.

A269076 Number of 2 X n binary arrays with some element plus some horizontally, diagonally or antidiagonally adjacent neighbor totalling two not more than once.

Original entry on oeis.org

4, 11, 27, 76, 185, 489, 1204, 3059, 7539, 18748, 46001, 112977, 275620, 671387, 1629003, 3944428, 9524969, 22955577, 55208404, 132545027, 317673891, 760222300, 1816668257, 4335499425, 10333941316, 24603369515, 58513434747, 139020574348
Offset: 1

Views

Author

R. H. Hardin, Feb 19 2016

Keywords

Examples

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

Crossrefs

Row 2 of A269075.

Formula

Empirical: a(n) = 2*a(n-1) + 5*a(n-2) - 6*a(n-3) - 9*a(n-4).
Empirical g.f.: x*(4 + 3*x - 15*x^2 - 9*x^3) / (1 - x - 3*x^2)^2. - Colin Barker, Jan 18 2019