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.

A188748 Number of 3 X n binary arrays without the pattern 1 1 1 diagonally, vertically or antidiagonally.

Original entry on oeis.org

7, 49, 292, 1723, 10327, 61996, 371641, 2227333, 13350748, 80027347, 479695855, 2875358812, 17235289777, 103310698477, 619258487404, 3711920099323, 22249757087527, 133368089673676, 799426585401961, 4791872379016597
Offset: 1

Views

Author

R. H. Hardin, Apr 09 2011

Keywords

Comments

Row 3 of A188747.

Examples

			Some solutions for 3 X 3:
..0..1..1....0..0..1....1..0..0....1..0..0....0..0..1....1..1..0....0..1..0
..1..0..0....1..0..0....0..1..1....1..0..1....1..0..1....1..0..0....1..1..0
..0..0..0....0..0..0....1..0..0....0..0..0....1..0..0....0..1..1....0..0..1
		

Formula

Empirical: a(n) = 6*a(n-1) -2*a(n-2) +11*a(n-3) +10*a(n-4) -30*a(n-5) -12*a(n-6).
Empirical g.f.: x*(7 + 7*x + 12*x^2 - 8*x^3 - 36*x^4 - 12*x^5) / (1 - 6*x + 2*x^2 - 11*x^3 - 10*x^4 + 30*x^5 + 12*x^6). - Colin Barker, Feb 20 2018