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”).

A212755
Number of (w,x,y,z) with all terms in {0,...,n} and |w-x|=max{w,x,y,z}-min{w,x,y,z}.
2
1, 10, 37, 96, 205, 386, 665, 1072, 1641, 2410, 3421, 4720, 6357, 8386, 10865, 13856, 17425, 21642, 26581, 32320, 38941, 46530, 55177, 64976, 76025, 88426, 102285, 117712, 134821, 153730, 174561, 197440, 222497, 249866, 279685
OFFSET
0,2
COMMENTS
For a guide to related sequences, see A211795.
FORMULA
a(n)=5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5).
G.f.: ( -1-5*x+3*x^2-x^3 ) / (x-1)^5 .
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[Abs[w - x] == Max[w, x, y, z] - Min[w, x, y, z], s = s + 1],
{w, 0, n}, {x, 0, n}, {y, 0, n}, {z, 0, n}]; s)]];
Map[t[#] &, Range[0, 40]] (* A212755 *)
CROSSREFS
Cf. A211795.
Sequence in context: A096000 A047672 A200872 * A048480 A116970 A355044
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 28 2012
STATUS
approved