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.

A207809 Number of 4 X n 0..1 arrays avoiding 0 0 0 and 0 0 1 horizontally and 0 1 0 and 1 0 1 vertically.

Original entry on oeis.org

10, 100, 370, 1970, 9040, 43990, 209050, 1002960, 4793390, 22944590, 109759520, 525189790, 2512723030, 12022412680, 57521607650, 275215898890, 1316784620900, 6300231318630, 30143802148430, 144224703156300, 690051081572450
Offset: 1

Views

Author

R. H. Hardin, Feb 20 2012

Keywords

Comments

Row 4 of A207808.

Examples

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

Crossrefs

Cf. A207808.

Programs

  • Maple
    f:= gfun:-rectoproc({a(n)=2*a(n-1) +13*a(n-2) +4*a(n-3) -12*a(n-4) +a(n-5) +a(n-6), seq(a(i)=[10,100,370,1970,9040,43990][i],i=1..6)},a(n),remember):
    map(f, [$1..50]); # Robert Israel, Jul 03 2016

Formula

Empirical: a(n) = 2*a(n-1) +13*a(n-2) +4*a(n-3) -12*a(n-4) +a(n-5) +a(n-6)
From Robert Israel, Jul 03 2016: (Start)
The empirical recursion is true: see link for Maple verification.
G.f.: (10*x+80*x^2+40*x^3-110*x^4+10*x^5+10*x^6)/(1-2*x-13*x^2-4*x^3+12*x^4-x^5-x^6). (End)