OFFSET
0,3
COMMENTS
Also, the number of (w,x,y,z) with all terms in {1,...,n} and median>=mean.
For a guide to related sequences, see A211795.
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n)+ A212135(n) = n^4.
a(n) = n*(n^3 + 2*n^2 - 3*n + 2)/2.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
G.f.: x*(1 + 7*x + 7*x^2 - 3*x^3) /(1 - x)^5. - Colin Barker, Dec 02 2017
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0}, (Do[If[Apply[Plus, Rest[Most[Sort[{w, x, y, z}]]]]/2 <= (w + x + y + z)/4, s = s + 1], {w, 1, #}, {x, 1, #}, {y, 1, #},
{z, 1, #}] &[n]; s)]];
Flatten[Map[{t[#]} &, Range[0, 50]]] (* A212134 *)
(* Peter J. C. Moses, May 01 2012 *)
PROG
(PARI) concat(0, Vec(x*(1 + 7*x + 7*x^2 - 3*x^3) /(1 - x)^5 + O(x^40))) \\ Colin Barker, Dec 02 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 04 2012
STATUS
approved