login
A212753
Number of (w,x,y,z) with all terms in {0,...,n} and at least one of these conditions holds: w<R, x<R, y>R, z>R, where R = max{w,x,y,z} - min{w,x,y,z}.
2
0, 12, 69, 228, 568, 1192, 2225, 3816, 6136, 9380, 13765, 19532, 26944, 36288, 47873, 62032, 79120, 99516, 123621, 151860, 184680, 222552, 265969, 315448, 371528, 434772, 505765, 585116, 673456, 771440, 879745, 999072, 1130144
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211795.
FORMULA
a(n)=4*a(n-1)-5*a(n-2)+5*a(n-4)-4*a(n-5)+a(n-6).
G.f.: -x*(12+21*x+12*x^2+x^3) / ( (1+x)*(x-1)^5 ).
MATHEMATICA
t = Compile[{{n, _Integer}},
Module[{s = 0}, (Do[
If[(w < # || x < # || y > # || z > #) &[
Max[w, x, y, z] - Min[w, x, y, z]], s++], {w, 0, n},
{x, 0, n}, {y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 40]] (* A212753 *)
(* Peter J. C. Moses, May 24 2012 *)
CROSSREFS
Cf. A211795.
Sequence in context: A359715 A238536 A096425 * A210427 A101097 A067702
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 28 2012
STATUS
approved