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.

A228385 Number of n X 3 binary arrays with top left value 1 and no two ones adjacent horizontally or vertically.

Original entry on oeis.org

2, 5, 21, 72, 268, 963, 3513, 12732, 46274, 167977, 610085, 2215300, 8044836, 29213495, 106085921, 385237512, 1398945714, 5080103005, 18447794373, 66990969264, 243269759052, 883405230683, 3207981221305, 11649402857444
Offset: 1

Views

Author

R. H. Hardin, Aug 21 2013

Keywords

Examples

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

Crossrefs

Column 3 of A228390.

Formula

Empirical: a(n) = 2*a(n-1) + 6*a(n-2) - a(n-4).
Empirical g.f.: x*(2 - x)*(1 + x) / (1 - 2*x - 6*x^2 + x^4). - Colin Barker, Sep 11 2018