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.

A329859 Numbers k such that k and uphi(k) have the same set of prime divisors, where uphi is the unitary totient function (A047994).

Original entry on oeis.org

1, 12, 36, 168, 240, 504, 702, 720, 1176, 1200, 1344, 1404, 1620, 3528, 3600, 4032, 4050, 6480, 8100, 9408, 14880, 19656, 22680, 23250, 28080, 28224, 32400, 44640, 46500, 53460, 63882, 65280, 69750, 74400, 113400, 127764, 132678, 133650, 137592, 139500
Offset: 1

Views

Author

Amiram Eldar, Nov 22 2019

Keywords

Examples

			12 is in the sequence since 12 = 2^2 * 3 and uphi(12) = 6 = 2 * 3 both have the same set of prime divisors, {2, 3}.
		

Crossrefs

The unitary version of A055744.

Programs

  • Mathematica
    rad[n_] := Times @@ (First@# & /@ FactorInteger@ n); uphi[1] = 1; uphi[n_] := Times @@ (-1 + Power @@@ FactorInteger[n]); Select[Range[10^5], rad[#] == rad[uphi[#]] &]