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.

A333912 Numbers k such that phi(k) is not the sum of 3 squares, where phi is the Euler totient function (A000010).

Original entry on oeis.org

29, 58, 61, 77, 93, 99, 113, 122, 124, 141, 145, 154, 157, 169, 186, 188, 198, 226, 232, 237, 241, 253, 282, 287, 290, 301, 305, 314, 316, 317, 325, 338, 348, 349, 363, 369, 381, 385, 387, 413, 429, 441, 449, 465, 474, 482, 484, 488, 493, 495, 496, 506, 508, 509
Offset: 1

Views

Author

Amiram Eldar, Apr 09 2020

Keywords

Comments

Pollack (2011) proved that the complementary sequence has asymptotic density 7/8. Therefore the asymptotic density of this sequence is 1/8.

Examples

			1 is not a term since phi(1) = 1 = 0^2 + 0^2 + 1^2 is the sum of 3 squares.
29 is a term since phi(29) = 28 is not the sum of 3 squares.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[500], SquaresR[3, EulerPhi[#]] == 0 &]