login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A213397 Number of (w,x,y) with all terms in {0,...,n} and 2*w >= |x+y-z|. 2

%I #20 Dec 23 2017 04:48:49

%S 1,5,18,43,83,144,229,341,486,667,887,1152,1465,1829,2250,2731,3275,

%T 3888,4573,5333,6174,7099,8111,9216,10417,11717,13122,14635,16259,

%U 18000,19861,21845,23958,26203,28583,31104,33769,36581,39546,42667,45947,49392,53005,56789,60750

%N Number of (w,x,y) with all terms in {0,...,n} and 2*w >= |x+y-z|.

%C For a guide to related sequences, see A212959.

%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,2,-3,3,-1).

%F a(n) = 3*a(n-1) - 3*a(n-2) + 2*a(n-3) - 3*a(n-4) + 3*a(n-5) - a(n-6).

%F G.f.: (1 + 2*x + 6*x^2 + 2*x^3 + x^4)/((1 - x)^4*(1 + x + x^2)).

%F a(n) = (n+1)^3 - A213396(n).

%F a(n) = floor(2*n^3/3) + 2*n*(n + 1) + 1. - _Bruno Berselli_, Dec 22 2017

%t t = Compile[{{n, _Integer}}, Module[{s = 0},

%t (Do[If[2 w >= Abs[x + y - w], s = s + 1],

%t {w, 0, n}, {x, 0, n}, {y, 0, n}]; s)]];

%t m = Map[t[#] &, Range[0, 60]] (* A212297 *)

%t CoefficientList[Series[(1 + 2 x + 6 x^2 + 2 x^3 + x^4)/((1 - x)^4*(1 + x + x^2)), {x, 0, 44}], x] (* _Michael De Vlieger_, Dec 22 2017 *)

%o (PARI) first(n) = Vec((1 + 2*x + 6*x^2 + 2*x^3 + x^4)/((1 - x)^4*(1 + x + x^2)) + O(x^n)) \\ _Iain Fox_, Dec 22 2017

%Y Cf. A212959, A213396.

%K nonn,easy

%O 0,2

%A _Clark Kimberling_, Jun 12 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 30 19:58 EDT 2024. Contains 372141 sequences. (Running on oeis4.)