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!)
A212250 Number of (w,x,y,z) with all terms in {1,...,n} and 3w>=x+y+z+n. 3

%I #10 Dec 04 2016 19:46:30

%S 0,0,4,18,54,129,262,478,807,1281,1938,2821,3975,5451,7305,9595,12385,

%T 15744,19743,24459,29974,36372,43743,52182,61786,72658,84906,98640,

%U 113976,131035,149940,170820,193809,219043,246664,276819,309657

%N Number of (w,x,y,z) with all terms in {1,...,n} and 3w>=x+y+z+n.

%C a(n)+A212249 = n^4.

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

%H <a href="/index/Rec">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,5,-5,6,-4,1).

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

%F G.f.: x^2*(4+2*x+6*x^2+x^3)/((1+x+x^2)*(1-x)^5). [_Bruno Berselli_, Jun 05 2012]

%F a(n) = (13*n^4+10*n^3-5*n^2+6*n+8*b)/72, where b = 0,-3,1,0,-3,1,... (repeated). [_Bruno Berselli_, Jun 05 2012]

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

%t (Do[If[3 w >= x + y + z + n, s = s + 1],

%t {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];

%t Map[t[#] &, Range[0, 40]] (* A212250 *)

%t (* _Peter J. C. Moses_, Apr 13 2012 *)

%Y Cf. A211795, A212247, A212249.

%K nonn,easy

%O 0,3

%A _Clark Kimberling_, May 09 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 27 15:53 EDT 2024. Contains 372019 sequences. (Running on oeis4.)