login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135910 Number of triples (x,y,z) of nonnegative integers such that x^2+y^3+z^4 = n. 4
1, 3, 3, 1, 1, 2, 1, 0, 1, 3, 3, 1, 1, 1, 0, 0, 2, 5, 3, 0, 1, 1, 0, 0, 2, 4, 3, 2, 3, 1, 0, 1, 2, 3, 1, 0, 2, 3, 1, 0, 1, 1, 1, 2, 3, 1, 0, 1, 0, 2, 2, 1, 3, 2, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 3, 5, 3, 0, 2, 1, 0, 0, 1, 3, 1, 0, 1, 1, 0, 1, 3, 5, 4, 2, 1, 1, 1, 0, 1, 4, 4, 2, 2, 1, 0, 0, 1, 2, 3, 0, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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
Sequence in context: A114266 A230206 A285117 * A255916 A367825 A107333
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 07 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 8 14:54 EDT 2024. Contains 375753 sequences. (Running on oeis4.)