Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #31 Jan 18 2024 09:59:03
%S 1,8,24,53,100,168,261,384,540,733,968,1248,1577,1960,2400,2901,3468,
%T 4104,4813,5600,6468,7421,8464,9600,10833,12168,13608,15157,16820,
%U 18600,20501,22528,24684,26973,29400,31968,34681,37544,40560,43733
%N Number of triples (w,x,y) with all terms in {0,...,n} and w >= floor((x+y)/3).
%C For a guide to related sequences, see A212959.
%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,2,-3,3,-1).
%F a(n) = 3*a(n-1) - 3*a(n-2) + 2*a(n-3) - 3*a(n-4) + 3*a(n-5) - a(n-6).
%F G.f.: (1 + 5x + 3*x^2 + 3*x^3)/((1 + x + x^2)*(1-x)^4).
%F a(n) = (n+1)^3 - A212971(n).
%F From _Ayoub Saber Rguez_, Dec 11 2023: (Start)
%F a(n) = A011379(n+1) - A212973(n).
%F a(n) = (2*n^3 + 8*n^2 + 10*n + 4 - (((n+1) mod 3) mod 2))/3. (End)
%t t = Compile[{{n, _Integer}}, Module[{s = 0},
%t (Do[If[w >= Floor[(x + y)/3], s = s + 1],
%t {w, 0, n}, {x, 0, n}, {y, 0, n}]; s)]];
%t m = Map[t[#] &, Range[0, 60]] (* A212972 *)
%Y Cf. A212959, A212971.
%Y Cf. A011379, A212973.
%K nonn,easy
%O 0,2
%A _Clark Kimberling_, Jun 03 2012
%E Name corrected by _Ayoub Saber Rguez_, Jan 09 2024