OFFSET
1,1
COMMENTS
Analogous to untouchable numbers (A005114) with Dedekind psi function (A001615) instead of the sum of divisors function, sigma (A000203).
te Riele named these numbers psi_1-untouchable. He calculated the first 2896 terms (terms below 20000). He proved that this sequence is infinite by showing that all the numbers of the form 2^k*3*5 (k >= 1, A110286(k) except for k = 0) are psi-untouchables.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
H. J. J. te Riele, A theoretical and computational study of generalized aliquot sequences (Doctoral thesis), MCT-74, Mathematisch Centrum, Amsterdam, 1976, Chapter 9.
MATHEMATICA
f[1] = 0; f[n_] := n*(Times @@ (1 + 1/FactorInteger[n][[;; , 1]]) - 1); m = 300; v = Table[0, {m}]; Do[j = f[k]; If[2 <= j <= m, v[[j]]++], {k, 1, m^2}]; Rest[Position[v, _?(# == 0 &)] // Flatten]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Sep 06 2019
STATUS
approved