OFFSET
1,2
COMMENTS
The unitary version of A271816.
EXAMPLE
120 is in the sequence since 2*120 - usigma(120) = 240 - 216 = 24, and 24 is a unitary divisor of 120.
MATHEMATICA
usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; aQ[n_] := Module[{d}, d=2n-usigma[n]; If[ d<=0, False, Divisible[n, d] && GCD[d, n/d] == 1 ]]; Select[Range[100000], aQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Apr 22 2018
EXTENSIONS
a(19)-a(31) from Giovanni Resta, Apr 26 2018
STATUS
approved