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.

Showing 1-1 of 1 results.

A333104 Unitary quasiperfect cototient numbers: numbers k such that the sum of the iterated unitary cototient function of k is equal to k+1.

Original entry on oeis.org

10, 22, 98, 118, 230, 266, 1452, 88894, 114214, 1274198, 51675986, 61177358, 82986118
Offset: 1

Views

Author

Amiram Eldar, Mar 07 2020

Keywords

Comments

a(14) > 10^9.

Examples

			10 is a term since A323410(10) = 6, A323410(6) = 4, A323410(4) = 1 and 6 + 4 + 1 = 11 = 10 + 1.
		

Crossrefs

Programs

  • Mathematica
    uphi[0] = 0; uphi[1] = 1; uphi[n_] := (Times @@ (Table[#[[1]]^#[[2]] - 1, {1}] & /@ FactorInteger[n]))[[1]]; ucot[n_] := n - uphi[n]; Select[Range[10^4], Plus @@ FixedPointList[ucot, #] == 2*# + 1 &]
Showing 1-1 of 1 results.