A211807 Number of ordered triples (w,x,y) with all terms in {1,...,n} and 2w^3<=x^3+y^3.
1, 5, 16, 38, 73, 123, 194, 290, 415, 569, 754, 978, 1245, 1559, 1914, 2320, 2781, 3303, 3888, 4532, 5243, 6027, 6890, 7836, 8853, 9957, 11152, 12440, 13827, 15301, 16878, 18564, 20363, 22273, 24290, 26430, 28697, 31093, 33612, 36262
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
f:= proc(n) local x; n + add(2*floor(((x^3+n^3)/2)^(1/3)), x=1..n-1) end proc: ListTools:-PartialSums(map(f,[$1..50])); # Robert Israel, Jan 26 2025
-
Mathematica
(See the program at A211808.)
Comments