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!)
A025341 Numbers that are the sum of 3 distinct nonzero squares in exactly 3 ways. 2
101, 110, 126, 134, 146, 149, 173, 174, 182, 185, 186, 221, 222, 237, 245, 251, 257, 278, 286, 294, 302, 305, 306, 309, 315, 318, 334, 338, 342, 349, 353, 354, 366, 377, 402, 404, 409, 410, 430, 440, 453, 454, 467, 481, 490, 502, 504, 514, 515, 517, 526, 529, 531, 536 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
N:= 10^6; # to get all terms <= N
A:= 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):
A[v]:= map(`+`, A[v], 1)
od od:
select(t -> A[t]=3, [$1..N]); # Robert Israel, Jan 03 2016
CROSSREFS
Sequence in context: A086918 A259300 A025349 * A290725 A255966 A305396
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 March 29 05:48 EDT 2024. Contains 371265 sequences. (Running on oeis4.)