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.

A228477 Number of nX3 binary arrays with top left value 1 and no two ones adjacent horizontally, vertically or antidiagonally.

Original entry on oeis.org

2, 4, 14, 41, 127, 386, 1181, 3605, 11013, 33635, 102734, 313780, 958385, 2927208, 8940618, 27307464, 83405606, 254747013, 778077691, 2376494562, 7258563605, 22169941573, 67713990833, 206819875427, 631693101322, 1929389878184
Offset: 1

Views

Author

R. H. Hardin Aug 22 2013

Keywords

Comments

Column 3 of A228482
Same recurrences as A228285 except in addition a smaller one for column 5

Examples

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

Formula

a(n) = a(n-1) +5*a(n-2) +4*a(n-3) -a(n-5).
G.f.: -x*(-2-2*x+x^3) / ( (1+x)*(x^4-x^3-3*x^2-2*x+1) ). - R. J. Mathar, Aug 25 2013