OFFSET
0,5
COMMENTS
A(n,k) is the number of nonnegative solutions to (x_1)^3 + (x_2)^3 + ... + (x_k)^3 <= n^3.
EXAMPLE
Square array begins:
1, 1, 1, 1, 1, 1, ...
1, 2, 3, 4, 5, 6, ...
1, 3, 6, 11, 20, 37, ...
1, 4, 11, 30, 84, 237, ...
1, 5, 18, 66, 241, 853, ...
1, 6, 26, 115, 500, 2093, ...
MATHEMATICA
Table[Function[k, SeriesCoefficient[1/(1 - x) Sum[x^i^3, {i, 0, n}]^k, {x, 0, n^3}]][j - n], {j, 0, 11}, {n, 0, j}] // Flatten
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Ilya Gutkovskiy, Apr 24 2018
STATUS
approved