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.

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

Original entry on oeis.org

3, 12, 72, 382, 2104, 11449, 62546, 341249, 1862631, 10165343, 55480071, 302792766, 1652555713, 9019158650, 49223917246, 268649627276, 1466210540982, 8002145144295, 43673350799304, 238356282199103, 1300878367732021
Offset: 1

Views

Author

R. H. Hardin, Aug 21 2013

Keywords

Examples

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

Crossrefs

Column 4 of A228390.

Formula

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