cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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

This page as a plain text file.
%I A212099 #10 May 09 2017 08:48:19
%S A212099 0,0,1,9,35,89,192,367,645,1047,1620,2395,3414,4749,6435,8518,11079,
%T A212099 14171,17876,22272,27409,33396,40290,48249,57265,67548,79146,92127,
%U A212099 106708,122880,140876,160757,182694,206791,233160,262032,293445
%N A212099 Number of (w,x,y,z) with all terms in {1,...,n} and w^3>x^3+y^3+z^3.
%C A212099 a(n)+A212098(n)=n^4.  For a guide to related sequences, see A211795.
%H A212099 Giovanni Resta, <a href="/A212099/b212099.txt">Table of n, a(n) for n = 0..1000</a>
%t A212099 t = Compile[{{n, _Integer}}, Module[{s = 0},
%t A212099 (Do[If[w^3 > x^3 + y^3 + z^3, s = s + 1],
%t A212099 {w, 1, #}, {x, 1, #}, {y, 1, #}, {z, 1, #}] &[n]; s)]];
%t A212099 Map[t[#] &, Range[0, 40]] (* A212099 *)
%t A212099 (* _Peter J. C. Moses_, Apr 13 2012 *)
%Y A212099 Cf. A211795, A212098.
%K A212099 nonn
%O A212099 0,4
%A A212099 _Clark Kimberling_, May 03 2012