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/6)*n^4 + (4/3)*n^3 + (91/12)*n^2 + (74/3)*n + 17.
Empirical for n mod 2 = 1: a(n) = (1/6)*n^4 + (4/3)*n^3 + (91/12)*n^2 + (74/3)*n + (65/4).
Empirical g.f.: x*(50 - 90*x + 18*x^2 + 83*x^3 - 70*x^4 + 17*x^5) / ((1 - x)^5*(1 + x)). - Colin Barker, Nov 16 2018
EXAMPLE
Some solutions for n=4:
..0..0..0..1....0..0..0..1....0..0..0..0....0..0..0..0....0..0..0..0
..0..0..0..1....0..0..1..1....0..0..0..0....0..1..1..1....0..0..0..1
..0..1..1..1....0..0..1..1....0..0..0..1....0..1..1..1....0..1..1..1
..1..1..1..1....0..0..1..1....0..0..0..1....0..1..1..1....1..1..1..1
..1..1..1..1....1..0..1..1....0..0..0..1....1..1..1..1....1..1..1..1
CROSSREFS
KEYWORD
nonn
AUTHOR
R. H. Hardin, Nov 27 2014
STATUS
approved