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.

A207656 Number of n X 3 0..1 arrays avoiding 0 0 0 and 1 1 1 horizontally and 0 0 1 and 1 0 0 vertically.

Original entry on oeis.org

6, 36, 84, 198, 474, 1140, 2748, 6630, 16002, 38628, 93252, 225126, 543498, 1312116, 3167724, 7647558, 18462834, 44573220, 107609268, 259791750, 627192762, 1514177268, 3655547292, 8825271846, 21306090978, 51437453796, 124180998564
Offset: 1

Views

Author

R. H. Hardin, Feb 19 2012

Keywords

Comments

Column 3 of A207661.

Examples

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

Crossrefs

Cf. A207661.

Formula

Empirical: a(n) = 3*a(n-1) - a(n-2) - a(n-3) for n>4.
Conjectures from Colin Barker, Jun 25 2018: (Start)
G.f.: 6*x*(1 + 3*x - 3*x^2 - 2*x^3) / ((1 - x)*(1 - 2*x - x^2)).
a(n) = (3/2)*(2 + (1-2*sqrt(2))*(1-sqrt(2))^n + (1+sqrt(2))^n*(1+2*sqrt(2))) for n>1.
(End)