login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A178096
Cube of n is equal to sum of four positive distinct squares; n^3=a^2+b^2+c^2+d^2; a>b>c>d>0.
0
5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57
OFFSET
1,1
COMMENTS
5^3=8^2+6^2+4^2+3^2, 6^3=10^2+8^2+6^2+4^2, ...
FORMULA
{n: n^3 in A004433}. - R. J. Mathar, Jun 15 2018
MATHEMATICA
z=100; lst={}; Do[a2=a^2; Do[b2=b^2; Do[c2=c^2; Do[d2=d^2; e2=a2+b2+c2+d2; e=e2^(1/3); If[IntegerQ[e], AppendTo[lst, e]], {d, c-1, 1, -1}], {c, b-1, 1, -1}], {b, a-1, 1, -1}], {a, 1, z}]; Union@lst
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Terms > 33 from R. J. Mathar, Jun 15 2018
STATUS
approved