OFFSET
1,1
LINKS
R. H. Hardin, Table of n, a(n) for n = 1..210
FORMULA
Empirical: a(n) = 2*a(n-1) - a(n-3) - a(n-4) + 2*a(n-6) - a(n-7).
Empirical for n mod 6 = 0: a(n) = (4/3)*n^3 + n^2 + n + 1.
Empirical for n mod 6 = 1: a(n) = (4/3)*n^3 + n^2 + n - (4/3).
Empirical for n mod 6 = 2: a(n) = (4/3)*n^3 + n^2 + n - (5/3).
Empirical for n mod 6 = 3: a(n) = (4/3)*n^3 + n^2 + n + 4.
Empirical for n mod 6 = 4: a(n) = (4/3)*n^3 + n^2 + n - (13/3).
Empirical for n mod 6 = 5: a(n) = (4/3)*n^3 + n^2 + n + (4/3).
Empirical g.f.: x*(2 + 11*x + 22*x^2 - x^3 + 13*x^4 + 2*x^5 - x^6) / ((1 - x)^4*(1 + x)*(1 + x + x^2)). - Colin Barker, Nov 08 2018
EXAMPLE
Some solutions for n=6:
..2....0....4....2....0....5....2....3....3....2....5....1....1....5....2....0
..3....2....6....4....3....6....0....5....3....4....2....6....5....1....5....2
..4....4....2....3....4....5....1....1....2....4....0....4....6....0....2....1
..3....2....4....3....5....4....5....3....4....6....1....5....4....2....3....1
CROSSREFS
KEYWORD
nonn
AUTHOR
R. H. Hardin, Oct 08 2014
STATUS
approved