login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A212747
Number of (w,x,y,z) with all terms in {0,...,n} and 2w=floor((x+y+z)/2).
1
1, 4, 13, 32, 63, 108, 171, 256, 365, 500, 665, 864, 1099, 1372, 1687, 2048, 2457, 2916, 3429, 4000, 4631, 5324, 6083, 6912, 7813, 8788, 9841, 10976, 12195, 13500, 14895, 16384, 17969, 19652, 21437, 23328, 25327, 27436, 29659, 32000
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211795.
FORMULA
a(n)=4*a(n-1)-7*a(n-2)+8*a(n-3)-7*a(n-4)+4*a(n-5)-a(n-6).
G.f.: (1 + 4*x^2 + x^4)/((1 - x)^4 * (1 + x^2)).
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[2 w == Floor[(x + y + z)/2], s = s + 1],
{w, 0, n}, {x, 0, n}, {y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 45]] (* A212747 *)
CROSSREFS
Cf. A211795.
Sequence in context: A272510 A036487 A184632 * A011936 A037235 A363256
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 28 2012
STATUS
approved