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.

A125018 Numbers == 1 (mod 4) with a unique partition as a sum of 2 squares x^2 + y^2.

Original entry on oeis.org

1, 5, 9, 13, 17, 29, 37, 41, 45, 49, 53, 61, 73, 81, 89, 97, 101, 109, 113, 117, 121, 137, 149, 153, 157, 173, 181, 193, 197, 229, 233, 241, 245, 257, 261, 269, 277, 281, 293, 313, 317, 333, 337, 349, 353, 361, 369, 373, 389, 397, 401, 405, 409, 421, 433
Offset: 1

Views

Author

Artur Jasinski, Nov 16 2006

Keywords

Examples

			5 = 1^2 + 2^2, 9 = 0^2 + 3^2, 13 = 2^2 + 3^2, 17 = 1^2 + 4^2, 29 = 2^2 + 5^2, ... - _Michael Somos_, Jul 25 2023
		

Crossrefs

Programs

  • Mathematica
    Select[4 * Range[0, 100] + 1, Length @ PowersRepresentations[#, 2, 2] == 1 &] (* Amiram Eldar, Mar 12 2020 *)
  • PARI
    isok(n)= {if (n % 4 != 1, return(0)); A000161(n) == 1;} \\ Michel Marcus, Nov 02 2013

Extensions

More terms from Michel Marcus, Nov 02 2013