A316225 Numbers k that divide the sum of sums of elements of all subsets of divisors of k (A229335).
1, 2, 4, 6, 8, 16, 24, 28, 32, 40, 64, 96, 120, 128, 224, 256, 288, 360, 384, 496, 512, 640, 672, 1024, 1536, 1792, 1920, 2016, 2048, 2176, 3744, 4096, 4320, 4680, 5632, 5760, 6144, 6528, 8128, 8192, 10240, 10880, 14336, 15872, 16384, 16896, 18432, 18688
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..500
- Heiko Harborth, Eine Bemerkung zu den vollkommenen Zahlen, Elemente der Mathematik, Vol. 31 (1976), pp. 119-121 (in German).
- Paul Pollack and Carl Pomerance, Prime-Perfect Numbers, INTEGERS, Electronic J. of Combinatorial Number Theory, Vol. 12a, Paper A14, 2012.
Programs
-
Mathematica
divSumSubQ[n_] := Divisible[DivisorSigma[1, n] * 2^(DivisorSigma[0, n] - 1), n]; Select[Range[100000], divSumSubQ]
-
PARI
isok(n) = (sigma(n)*2^(numdiv(n)-1) % n) == 0; \\ Michel Marcus, Dec 21 2018
Comments