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!)
A274044 Squarefree numbers that are the sum of two squares in more than one way. 2
65, 85, 130, 145, 170, 185, 205, 221, 265, 290, 305, 365, 370, 377, 410, 442, 445, 481, 485, 493, 505, 530, 533, 545, 565, 610, 629, 685, 689, 697, 730, 745, 754, 785, 793, 865, 890, 901, 905, 949, 962, 965, 970, 985, 986, 1010, 1037, 1066, 1073, 1090, 1105, 1130, 1145 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Squarefree numbers that are the sum of two nonzero squares in more than one way.
LINKS
FORMULA
A005117 INTERSECT A007692. - R. J. Mathar, Feb 01 2017
EXAMPLE
65 is a term because 65 = 5*13 = 1^2 + 8^2 = 4^2 + 7^2.
PROG
(PARI) isA007692(n) = {nb = 0; lim = sqrtint(n); for (x=1, lim, if ((n-x^2 >= x^2) && issquare(n-x^2), nb++); ); nb >= 2; }
lista(nn) = for(n=1, nn, if(isA007692(n) && issquarefree(n), print1(n, ", ")));
CROSSREFS
Sequence in context: A165158 A084648 A224770 * A024409 A131574 A323272
KEYWORD
nonn
AUTHOR
Altug Alkan, Jun 07 2016
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 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)