OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MAPLE
with(numtheory): for n from 1 to 1200 do it := divisors(n): count := 0: for i from 1 to nops(it) do if it[i]>=3 and 1<=n/it[i] and n/it[i]<=(it[i]-2) then count := count+1 fi:od: if count=2^nops(ifactors(n)[2]) then printf(`%d, `, n) fi; od:
MATHEMATICA
j[n_] := DivisorSum[n, 1&, # > 2 && n/# < #-1 &]; Select[Range[1000], j[#] == 2^PrimeNu[#] &] (* Amiram Eldar, Jun 11 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Jun 20 2000
STATUS
approved