OFFSET
1,1
COMMENTS
Subset of A124967.
LINKS
Robert Price, Table of n, a(n) for n = 1..81953
EXAMPLE
a(1)=81 because 81 = 6^2 + 6^2 + 3^2 = 7^2 + 4^2 + 4^2 = 8^2 + 4^2 + 1^2 = 9^2 + 0^2 + 0^2.
161 = 1^2 + 4^2 + 12^2 = 2^2 + 6^2 + 11^2 = 4^2 + 8^2 + 9^2 = 5^2 + 6^2 + 10^2, so 161 is in the list.
MATHEMATICA
Select[Range[310], Length@PowersRepresentations[#, 3, 2] >= 4 &] (* Ray Chandler, Oct 31 2019 *)
PROG
(PARI) isA124968(n)={ local(cnt=0, z2) ; for(x=0, floor(sqrt(n)), for(y=x, floor(sqrt(n-x^2)), z2=n-x^2-y^2 ; if( z2>=y^2 && issquare(z2), cnt++ ; ) ; if(cnt >=4, return(1) ) ; ) ; ) ; return(0) ; } { for(n=1, 800, if( isA124968(n), print1(n, ", ") ; ) ; ) ; } \\ R. J. Mathar
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Nov 14 2006
EXTENSIONS
Corrected and extended by Ray Chandler and R. J. Mathar, Nov 29 2006
STATUS
approved