A225880 Numbers that can be expressed as the product of largest odd proper divisor and the sum of odd proper divisors.
12, 56, 672, 992, 11904, 16256, 55552, 195072, 666624, 910336, 10924032, 16125952, 67100672, 193511424, 805208064, 903053312, 3757637632, 10836639744, 17179738112, 45091651584, 66563866624, 206156857344, 274877382656, 798766399488, 962065334272, 1090788524032
Offset: 1
Keywords
Examples
11904 = 93*(93+31+3+1).
Programs
-
PARI
gdivodd(n)={m=n;while(m/2==m\2,m=m/2);return(m)} {for (n=2,2*10^8,m=gdivodd(n)*sumdiv(n, d, d*(d%2));if(m==n,print(n)))}
Comments