A239208 Numbers n such that sigma(n) divides the sum of the numbers x not coprime to n, with x<=n.
18, 135, 891, 4095, 10560, 13120, 14144, 21600, 23199, 74655, 144495, 192311, 404415, 4197375, 4612608, 5675775, 6664680, 9180800, 10953215, 11110400, 14381055, 18162144, 18420480, 18920000, 20765024, 25159680, 32058351, 41055200, 55889920, 65327104, 65982464
Offset: 1
Examples
18/2*(19-phi(18)) = 117, sigma(18) = 39 and 117 / 39 = 3.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..100
Programs
-
Maple
with(numtheory); P:=proc(q) local a,n; for n from 1 to q do a:=n/2*(n+1-phi(n)); if type(a/sigma(n),integer) then print(n); fi; od; end: P(10^6);
Extensions
a(14)-a(31) from Giovanni Resta, Mar 12 2014
Comments