login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A025310
Numbers that are the sum of 2 distinct nonzero squares in exactly 9 ways.
2
71825, 93925, 122525, 143650, 156325, 173225, 187850, 209525, 223925, 244205, 245050, 257725, 267325, 273325, 287300, 296225, 308425, 312650, 346450, 357425, 375700, 376025, 382925, 409825, 419050, 426725, 440725, 444925, 447850, 460525
OFFSET
1,1
MATHEMATICA
nn = 460525; 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, 9]] (* T. D. Noe, Apr 07 2011 *)
CROSSREFS
Sequence in context: A025319 A097245 A025292 * A187312 A080477 A376469
KEYWORD
nonn
STATUS
approved