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!)
A025344 Numbers that are the sum of 3 distinct nonzero squares in exactly 6 ways. 1
314, 329, 374, 426, 434, 458, 497, 530, 542, 546, 558, 594, 602, 605, 641, 650, 665, 693, 698, 705, 713, 714, 725, 741, 746, 750, 755, 766, 773, 774, 782, 818, 825, 833, 842, 845, 849, 861, 875, 882, 885, 902, 930, 934, 962, 966, 998, 1010, 1013, 1019, 1026, 1058 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
N:= 10^6; # to get all terms <= N
S:= Vector(N):
for a from 1 to floor(sqrt(N/3)) do
for b from a+1 to floor(sqrt((N-a^2)/2)) do
c:= [$(b+1) .. floor(sqrt(N-a^2-b^2))]:
v:= map(t -> a^2 + b^2 + t^2, c):
S[v]:= map(`+`, S[v], 1)
od od: select(t -> S[t]=6, [$1..N]); # Robert Israel, Jan 03 2016
CROSSREFS
Sequence in context: A107115 A045290 A025352 * A219962 A186396 A107117
KEYWORD
nonn
AUTHOR
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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)