OFFSET
0,4
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,0,2,-2,0,-1,1).
FORMULA
a(n) = a(n-1)+2*a(n-3)-2*a(n-4)-a(n-6)+a(n-7).
G.f.: (x^2)*(1 + 2*x + 3*x^3)/((1 - x)^3*(1 + x + x^2)^2).
MATHEMATICA
a[n_] := Floor[2*n/3]^2 - Floor[n/3]^2
Table[a[n], {n, 0, 60}] (* A213030 *)
LinearRecurrence[{1, 0, 2, -2, 0, -1, 1}, {0, 0, 1, 3, 3, 8, 12}, 60] (* Harvey P. Dale, Jul 06 2021 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 05 2012
STATUS
approved