login
A392668
Numbers m such that sigma(m) = 2*m - omega(m), where omega(m) is the number of distinct prime divisors of m.
2
2, 4, 8, 10, 16, 32, 64, 128, 136, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 32896, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432, 67108864, 134217728, 268435456, 536870912, 815634435, 1073741824, 2147483648, 2147516416
OFFSET
1,1
COMMENTS
If (2^k+1) is prime and k > 1, then 2^(k-1)*(2^k+1) is in this sequence. All even powers of 2 are in this sequence.
22660587056580139737907204 and 164399910729457037686170602275463956083792004 are also terms.
LINKS
Alexander Violette, Table of n, a(n) for n = 1..41
PROG
(PARI) for(n=1, 10^5, if(sigma(n)==2*n-omega(n), print(n)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Violette, Jan 19 2026
STATUS
approved