OFFSET
0,3
COMMENTS
For a guide to related sequences, see A211795.
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,4,-4,-6,6,4,-4,-1,1).
FORMULA
a(n)=a(n-1)+4*a(n-2)-4*a(n-3)-6*a(n-4)+6*a(n-5)+4*a(n-6)-4*a(n-7)-a(n-8)+a(n-9).
G.f.: x*(1+x+10*x^2+7*x^4+x^5+4*x^3) / ( (1+x)^4*(1-x)^5 ).
a(n)=((2*n^4+6*n^3+6*n^2+4*n+1)-(2*n^3+6*n^2+4*n+1)*(-1)^n)/32. - Luce ETIENNE, Apr 05 2014
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0}, (Do[If[(Mod[w, 2] == 0) && (Mod[x, 2] == 1) && (Mod[y, 2] == 1) && (Mod[z, 2] == 1), s++], {w, 0, n}, {x, 0, n},
{y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 40]] (* A212765 *)
LinearRecurrence[{1, 4, -4, -6, 6, 4, -4, -1, 1}, {0, 1, 2, 16, 24, 81, 108, 256, 320}, 40]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 29 2012
STATUS
approved