OFFSET
1,1
LINKS
R. H. Hardin, Table of n, a(n) for n = 1..210
FORMULA
Empirical: a(n) = 4*a(n-1) - 5*a(n-2) + 5*a(n-4) - 4*a(n-5) + a(n-6).
Empirical for n mod 2 = 0: a(n) = (1/24)*n^4 + (1/2)*n^3 + (10/3)*n^2 + 10*n + 8.
Empirical for n mod 2 = 1: a(n) = (1/24)*n^4 + (1/2)*n^3 + (10/3)*n^2 + 10*n + (65/8).
Empirical g.f.: x*(22 - 42*x + 11*x^2 + 34*x^3 - 31*x^4 + 8*x^5) / ((1 - x)^5*(1 + x)). - Colin Barker, Nov 16 2018
EXAMPLE
Some solutions for n=4:
..0..0..0....0..1..1....0..0..1....0..0..0....1..0..1....0..0..0....0..0..0
..0..0..1....1..1..1....0..1..1....0..0..0....0..1..1....0..0..0....0..0..0
..1..0..1....1..1..1....0..1..1....0..0..0....1..1..1....0..0..0....0..0..0
..0..1..1....1..1..1....0..1..1....0..0..0....1..1..1....0..0..0....0..0..1
..0..1..1....1..1..1....1..1..1....0..1..1....1..1..1....1..0..0....0..1..1
CROSSREFS
KEYWORD
nonn
AUTHOR
R. H. Hardin, Nov 27 2014
STATUS
approved