OFFSET
0,1
COMMENTS
Conjecture: a(n) > 0 for any nonnegative integer n.
This has been verified for all n = 0..10^5.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 0..10000
Zhi-Wei Sun, Natural numbers represented by floor(x^2/a) + floor(y^2/b) + floor(z^2/c), arXiv:1504.01608 [math.NT], 2015.
EXAMPLE
a(0) = 2 with 0 = floor((1^3+0^3)/2 + (1^3+0^3)/6) = floor((1^3+0^3)/2 + (1^3+1^3)/6).
a(7) = 1 with 7 = floor((3^3+1^3)/2 + (2^3+2^3)/6).
a(30) = 1 with 30 = floor((2^3+2^3)/2 + (5^3+2^3)/6).
a(111) = 1 with 111 = floor((6^3+1^3)/2 + (2^3+2^3)/6).
a(163) = 1 with 163 = floor((6^3+3^3)/2 + (5^3+5^3)/6).
a(219) = 1 with 219 = floor((4^3+0^3)/2 + (10^3+5^3)/6).
MATHEMATICA
CQ[n_]:=CQ[n]=IntegerQ[n^(1/3)]
tab={}; Do[r=0; Do[If[CQ[6n+s-3(x^3+y^3)-z^3], r=r+1], {s, Boole[n==0], 5}, {x, 1, ((6n+s-1)/3)^(1/3)}, {y, 0, Min[x, ((6n+s-1)/3-x^3)^(1/3)]}, {z, 0, ((6n+s-3(x^3+y^3))/2)^(1/3)}]; tab=Append[tab, r], {n, 0, 100}]; Print[tab]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Apr 11 2021
STATUS
approved