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.

A049225 Values of totient function applied to squarefree numbers; or numbers of form Product (p_i-1) where p_i are distinct primes.

Original entry on oeis.org

1, 2, 4, 6, 8, 10, 12, 16, 18, 20, 22, 24, 28, 30, 32, 36, 40, 42, 44, 46, 48, 52, 56, 58, 60, 64, 66, 70, 72, 78, 80, 82, 84, 88, 92, 96, 100, 102, 104, 106, 108, 112, 116, 120, 126, 128, 130, 132, 136, 138, 140, 144, 148, 150, 156, 160, 162, 164, 166, 168, 172, 176
Offset: 1

Views

Author

Keywords

Comments

Numbers m such that m = phi(k) and |mu(k)| = 1.

Examples

			8, 120, 48 are terms as totients of the squarefree numbers 15, 143, 210.
54, 110 are not terms since there are no squarefree numbers k such that phi(k) = 54, 110.
		

Crossrefs

Terms of A049200 after ordering and omitting multiple occurrences.

Programs

  • PARI
    isok(n) = {my(v = invphi(n)); (#v) && (#select(x->issquarefree(x), v));} \\ Michel Marcus, Feb 25 2019