OFFSET
0,2
LINKS
T. D. Noe, Table of n, a(n) for n = 0..10000
K. B. Ford, The representation of numbers as sums of unlike powers II, J. Amer. Math. Soc., 9 (1996), 919-940.
MAPLE
M:=10; M2:=M^2; t0:=array(0..M2);
for i from 0 to M2 do t0[i]:=0; od:
for a from 0 to M do for b from 0 to M do for c from 0 to M do
i:=a^2+b^3+c^4; if i <= M2 then t0[i]:=t0[i]+1; fi;
od: od: od: [seq(t0[i], i=0..M2)];
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 07 2008
STATUS
approved