OFFSET
1,2
COMMENTS
The top left corner is T(1,0).
It appears that this table does not contain any 0's.
It appears that row n is constant iff n is squarefree, and no prime divisor of n is == 1 (mod 6). It is not hard to show that such rows are constant, since the cubes are equi-distributed in such moduli.
EXAMPLE
The 6 ways to represent 0 (mod 4) are 0^2+0^3, 0^2+2^3, 1^2+3^3, 2^2+0^3, 2^2+2^3, and 3^2+3^3.
PROG
(PARI) al(n)=local(v); v=vector(n); for(i=0, n-1, for(j=0, n-1, v[(i^2+j^3)%n+1]++)); v
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Franklin T. Adams-Watters, Dec 03 2009
STATUS
approved