A025313 Numbers that are the sum of 2 distinct nonzero squares in 3 or more ways.
325, 425, 650, 725, 845, 850, 925, 1025, 1105, 1300, 1325, 1445, 1450, 1525, 1625, 1690, 1700, 1825, 1850, 1885, 2050, 2125, 2210, 2225, 2405, 2425, 2465, 2525, 2600, 2650, 2665, 2725, 2825, 2873, 2890, 2900, 2925, 3050, 3125, 3145, 3250, 3380, 3400
Offset: 1
Keywords
Examples
325 = 1^2+18^2 = 6^2+17^2 = 10^2+15^2. [Zak Seidov, Apr 07 2011]
Links
Programs
-
Mathematica
nn = 3400; 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, ?(# >= 3 &)]] (* _T. D. Noe, Apr 07 2011 *)
Comments