login
A212510
Number of (w,x,y,z) with all terms in {1,...,n} and w<2x and y>3z.
3
0, 0, 0, 0, 12, 38, 81, 185, 336, 549, 900, 1365, 1944, 2794, 3822, 5070, 6720, 8680, 10935, 13821, 17100, 20853, 25410, 30569, 36288, 43148, 50700, 59076, 68796, 79506, 91125, 104545, 119040, 134805, 152592, 171853, 192456, 215670, 240426, 266994, 296400, 327860
OFFSET
0,5
COMMENTS
For a guide to related sequences, see A211795.
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,2,2,-1,-4,0,2,0,-2,0,4,1,-2,-2,0,1).
FORMULA
a(n) = 2*a(n-2)+2*a(n-3)-a(n-4)-4*a(n-5)+2*a(n-7)-2*a(n-9)+4*a(n-11)+a(n-12)-2*a(n-13)-2*a(n-14)+a(n-16).
G.f.: x^4*(12 +38*x +57*x^2 +85*x^3 +110*x^4 +103*x^5 +91*x^6 +80*x^7 +46*x^8 +19*x^9 +6*x^10 +x^11) / ((1 -x)^5*(1 +x)^3*(1 -x +x^2)*(1 +x +x^2)^3). - Colin Barker, Dec 17 2015
MATHEMATICA
t = Compile[{{n, _Integer}}, Module[{s = 0},
(Do[If[w < 2 x && y > 3 z, s = s + 1],
{w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
Map[t[#] &, Range[0, 50]] (* A212510 *)
PROG
(PARI) concat(vector(4), Vec(x^4*(12 +38*x +57*x^2 +85*x^3 +110*x^4 +103*x^5 +91*x^6 +80*x^7 +46*x^8 +19*x^9 +6*x^10 +x^11) / ((1 -x)^5*(1 +x)^3*(1 -x +x^2)*(1 +x +x^2)^3) + O(x^60))) \\ Colin Barker, Dec 17 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 20 2012
STATUS
approved