A230605 Composite numbers n such that number of non-divisors of n divides sum of non-divisors of n.
4, 18, 20, 24, 432, 588, 692945344
Offset: 1
Keywords
Examples
20 is in sequence because A024816(20) mod A049820(20) = 168 mod 14 = 0.
Programs
-
PARI
isok(n) = (nnd = n - numdiv(n)) && !isprime(n) && !((n*(n+1)/2-sigma(n)) % nnd); \\ Michel Marcus, Nov 09 2013
Extensions
a(7) from Donovan Johnson, Nov 10 2013
Comments