OFFSET
1,1
COMMENTS
Madeleine Farris named these numbers "Euler-totient Ruth-Aaron numbers" (in analogy to the Ruth-Aaron numbers, A039752). She proved that the number of terms <= x is O(x*(log(log(x))^4)/(log(x))^2) and that the sum of their reciprocals is bounded.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Madeleine Farris, Ruth-Aaron Numbers: An Exploration in Analytic Number Theory (thesis), Wellesley College, 2019.
MATHEMATICA
f[p_, e_] := e * (p-1); a[n_] := Plus @@ (f @@@ FactorInteger[n]); aQ[n_] := a[n] == a[n+1]; Select[Range[10^5], aQ]
PROG
(PARI) s(n) = {my(f = factor(n)); sum(i = 1, #f~, f[i, 2] * (f[i, 1] - 1)); }
lista(kmax) = {my(s1 = s(1), s2); for(k=2, kmax, s2 = s(k); if(s1 == s2, print1(k-1, ", ")); s1 = s2); } \\ Amiram Eldar, Apr 06 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Sep 15 2019
STATUS
approved