OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The set of iterated phi of 91 is {72, 24, 8, 4, 2, 1} and none of its subsets sums to 91.
MATHEMATICA
pseudoPerfectTotQ[n_] := Module[{tots = Most[Rest[FixedPointList[EulerPhi@# &, n]]]}, MemberQ[Total /@ Subsets[tots, Length[tots]], n]];
totAbundantQ[n_] := Plus @@ FixedPointList[EulerPhi@# &, n] > 2*n + 1;
weirdTotient[n_] := totAbundantQ[n] && ! pseudoPerfectTotQ[n];
Select[Range[1100], weirdTotient]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 09 2017
STATUS
approved