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.

A362664 Numbers k with exactly two solutions x to the equation iphi(x) = k, where iphi is the infinitary totient function A091732.

Original entry on oeis.org

1, 2, 3, 4, 10, 15, 20, 22, 28, 42, 44, 45, 46, 52, 54, 56, 58, 70, 78, 82, 92, 100, 102, 104, 106, 116, 130, 136, 140, 148, 162, 164, 166, 172, 174, 178, 184, 190, 196, 200, 204, 208, 212, 220, 222, 226, 228, 234, 238, 246, 250, 255, 260, 262, 268, 272, 282, 292, 296
Offset: 1

Views

Author

Amiram Eldar, Apr 29 2023

Keywords

Comments

Numbers k such that A362485(k) = 2.
There are no numbers k with a single solution to iphi(x) = k, because if iphi(x) = k, and A007814(x) is even, then 2*x is also a solution, i.e., iphi(2*x) = k.

Crossrefs

Similar sequences: A361969, A362185.

Programs

  • Mathematica
    Select[Range[300], Length[invIPhi[#]] == 2 &] (* using the function invIPhi from A362484 *)