cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A025310 Numbers that are the sum of 2 distinct nonzero squares in exactly 9 ways.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

Where does this first differ from A025292? - R. J. Mathar, Jun 24 2025

Programs

  • 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 *)