|
| |
|
|
A025320
|
|
Numbers that are the sum of 2 distinct nonzero squares in 10 or more ways.
|
|
7
| |
|
|
138125, 160225, 204425, 226525, 235625, 276250, 292825, 300625, 308125, 320450, 333125, 337025, 348725, 359125, 386425, 393125, 403325, 408850, 416585, 430625, 435625, 453050, 456025, 469625, 471250, 491725, 493025, 495625, 499525, 505325
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
LINKS
| Index entries for sequences related to sums of squares
|
|
|
MATHEMATICA
| nn = 505325; t = Table[0, {nn}]; lim = Floor[Sqrt[nn - 1]]; Do[num = i^2 + j^2; If[num <= nn, t[[num]]++], {i, lim}, {j, i - 1}]; Flatten[Position[t, _?(# >= 10 &)]] (* T. D. Noe, Apr 07 2011 *)
|
|
|
CROSSREFS
| Cf. A025301. [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Oct 23 2008]
Sequence in context: A110598 A069336 A025301 * A025293 A025311 A081429
Adjacent sequences: A025317 A025318 A025319 * A025321 A025322 A025323
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| David W. Wilson (davidwwilson(AT)comcast.net)
|
| |
|
|