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.

A049195 Numbers k such that the Euler totient function phi(k) is divisible by a square.

Original entry on oeis.org

5, 8, 10, 12, 13, 15, 16, 17, 19, 20, 21, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 66, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 84, 85, 87, 88, 89, 90, 91, 92, 93, 95
Offset: 1

Views

Author

Keywords

Comments

For k > 2 and p a prime: p^k is in this sequence. - Enrique Pérez Herrero, Apr 25 2013
The asymptotic density of this sequence is 1 since its complement (A049149) has a density 0. - Amiram Eldar, Mar 02 2021

Examples

			72 and 73 belong because neither phi(72) = 24 nor phi(73) = 72 are squarefree.
		

Crossrefs

Complement of A049149.

Programs

  • Mathematica
    Select[Range[100], MoebiusMu[EulerPhi[#]] == 0 &]
    Select[Range[100],!SquareFreeQ[EulerPhi[#]]&] (* Harvey P. Dale, Apr 30 2018 *)