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

A212674
Number of (w,x,y,z) with all terms in {1,...,n} and w > |x-y| + |y-z|.
2
0, 1, 8, 35, 104, 247, 504, 925, 1568, 2501, 3800, 5551, 7848, 10795, 14504, 19097, 24704, 31465, 39528, 49051, 60200, 73151, 88088, 105205, 124704, 146797, 171704, 199655, 230888, 265651, 304200, 346801, 393728, 445265, 501704
OFFSET
0,3
COMMENTS
a(n)+A212673(n) = n^4. 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 + 4*x^2 + 8*x^3 + 4*x^4 + x^5)/(1 - 4*x + 5*x^2 - 5*x^4 + 4*x^5 - x^6). [corrected by Georg Fischer, May 10 2019]
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w > Abs[x - y] + Abs[y - z], s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 40]] (* A212674 *)
LinearRecurrence[{4, -5, 0, 5, -4, 1}, {0, 1, 8, 35, 104, 247}, 40]
CROSSREFS
Cf. A211795.
Sequence in context: A212903 A168566 A058102 * A279743 A189592 A285737
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 23 2012
STATUS
approved