OFFSET
1,2
COMMENTS
Numbers k such that A351112(k) = 1.
Includes all primes except for 2 and 3, and all powers of those primes.
If k is a term, then so are all divisors of k.
For i < 271, a(i+68) = a(i) + 210, and this equation seems to be true for most i.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
A351112(a(n)) = 1.
EXAMPLE
a(9) = 25 is a term because of its divisors 1, 5, 25, only 1 is balanced.
MAPLE
filter:= proc(n) uses numtheory;
andmap(t -> sigma(t) mod phi(t) <> 0, divisors(n) minus {1})
end proc:
select(filter, [$1..1000]);
MATHEMATICA
Select[Range[200], DivisorSum[#, 1 &, Divisible[DivisorSigma[1, #1], EulerPhi[#1]] &] == 1 &] (* Amiram Eldar, Nov 28 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Nov 28 2023
STATUS
approved