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.

A025307 Numbers that are the sum of 2 distinct nonzero squares in exactly 6 ways.

Original entry on oeis.org

5525, 9425, 11050, 12025, 12325, 13325, 14365, 15725, 17225, 17425, 18785, 18850, 19825, 21125, 22100, 22525, 23725, 24050, 24505, 24650, 25925, 26650, 26825, 28730, 28925, 29725, 31025, 31265, 31450, 31525, 32825, 34450, 34645, 34850, 35425, 36125
Offset: 1

Views

Author

Keywords

Comments

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

Programs

  • Mathematica
    nn = 36125; 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, 6]] (* T. D. Noe, Apr 07 2011 *)