OFFSET
1,1
COMMENTS
Composite integers divisible by 1 less than the number of their divisors.
This is, composite members of A054010. - Carl R. White, Jul 11 2012
LINKS
Carl R. White, Table of n, a(n) for n = 1..10000
MATHEMATICA
Do[ If[ !PrimeQ[ n ], If[ IntegerQ[ n/(DivisorSigma[ 0, n ]-1) ], Print[ n ] ] ], {n, 1, 500} ]
Select[Range[2, 400], !PrimeQ[#]&&Divisible[#, DivisorSigma[0, #]-1]&] (* Harvey P. Dale, Mar 13 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
STATUS
approved