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.
%I A348265 #4 Oct 09 2021 07:19:13 %S A348265 1,2,84,1596,410652,9114300,10628100,3012406320 %N A348265 a(n) is the least number k such that A348264(k) = n, or -1 if no such number exists. %e A348265 n The n iterations of a(n) under the map x -> A348264(x) %e A348265 - -------------------------------------------------------------------------------- %e A348265 0 1 %e A348265 1 2 -> 1 %e A348265 2 84 -> 78 -> 39 %e A348265 3 1596 -> 1428 -> 1326 -> 663 %e A348265 4 410652 -> 410172 -> 366996 -> 340782 -> 170391 %e A348265 5 9114300 -> 8871252 -> 8680848 -> 8661648 -> 8487018 -> 4243509 %e A348265 6 10628100 -> 10344684 -> 10309980 -> 10287900 -> 10013556 -> 9298302 -> 4649151 %e A348265 7 3012406320 -> 2999958360 -> 2927545572 -> 2917724340 -> 2911475700 -> 2833836348 -> 2631419466 -> 1315709733 %t A348265 f[p_, e_] := p^e - 1; uphi[1] = 1; uphi[n_] := Times @@ f @@@ FactorInteger[n]; sum[n_] := Plus @@ DeleteDuplicates[uphi /@ Select[Divisors[n], CoprimeQ[#, n/#] &]]; s[n_] := -2 + Length@FixedPointList[sum, n]; seq[m_, lim_] := Module[{t = Table[0, {m}], c = 0, n = 1}, While[c < m && n < lim, i = s[n] + 1; If[i <= m && t[[i]] == 0, c++; t[[i]] = n]; n++]; TakeWhile[t, # > 0 &]]; seq[5, 10^6] %Y A348265 The unitary version of A348214. %Y A348265 Cf. A348004, A348264. %K A348265 nonn,more %O A348265 0,2 %A A348265 _Amiram Eldar_, Oct 09 2021