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!)
A085989 Numbers that can be expressed as a sum of two squares, each >=2. 5
8, 13, 18, 20, 25, 29, 32, 34, 40, 41, 45, 50, 52, 53, 58, 61, 65, 68, 72, 73, 74, 80, 85, 89, 90, 97, 98, 100, 104, 106, 109, 113, 116, 117, 125, 128, 130, 136, 137, 145, 146, 148, 149, 153, 157, 160, 162, 164, 169, 170, 173, 178, 180, 181, 185, 193, 194, 200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Landau-Ramanujan Constant
EXAMPLE
8 = 2^2 + 2^2, 13 = 2^2 + 3^2, ...
MAPLE
filter:= n -> ormap(t -> subs(t, x)>1 and subs(t, y) > 1, [isolve(x^2 + y^2 = n)]):
select(filter, [$0..200]); # Robert Israel, Mar 06 2017
MATHEMATICA
r[n_] := Reduce[2 <= x <= y && n == x^2 + y^2, {x, y}, Integers]; Select[Range[200], r[#] =!= False &] (* Jean-François Alcover, Oct 29 2012 *)
CROSSREFS
Cf. A001481.
Sequence in context: A348277 A337308 A014134 * A319879 A095097 A187227
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jul 06 2003
EXTENSIONS
Offset changed by Robert Israel, Mar 06 2017
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 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)