A250405 Numbers k such that all values of Euler phi (A000010) of all divisors of k are pairwise distinct and represent all proper divisors of k+1.
1, 3, 15, 255, 65535, 4294967295
Offset: 1
Examples
15 is in the sequence because {phi(d) : d|15} = {1, 2, 4, 8} = {d : d|16, d<16}. 2 is not in the sequence because {phi(d) : d|2} = {1, 1}, but {d : d|2, d<2} = {1}.
Crossrefs
Programs
-
Magma
[n: n in [1..100000] | ([EulerPhi(d): d in Divisors(n)]) eq ([d: d in Divisors(n+1) | d lt n+1 ])];
Extensions
Edited and a(6) added by Max Alekseyev, May 04 2024
Comments