A325023 Multi-perfect numbers m from A007691 such that m*(m-tau(m))/sigma(m) is an integer h, where k-tau(k) is the number of nondivisors of k (A049820) and sigma(k) is the sum of the divisors of k (A000203).
1, 6, 28, 496, 672, 8128, 30240, 32760, 2178540, 23569920, 33550336, 45532800, 142990848, 1379454720, 8589869056, 14182439040, 43861478400, 66433720320, 137438691328, 153003540480, 403031236608, 704575228896, 13661860101120, 181742883469056, 6088728021160320
Offset: 1
Keywords
Examples
Multi-perfect number 28 is a term because 28*(28-tau(28))/sigma(28) = 28*(28-6)/56 = 11 (integer).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..512
Programs
-
Magma
[n: n in [1..1000000] | IsIntegral(((n-NumberOfDivisors(n)) * n) / SumOfDivisors(n)) and IsIntegral(SumOfDivisors(n)/n)]
-
Mathematica
Select[Range[10^6], And[Mod[#3, #1] == 0, IntegerQ[#1 (#1 - #2)/#3]] & @@ Prepend[DivisorSigma[{0, 1}, #], #] &] (* Michael De Vlieger, Mar 24 2019 *)
-
PARI
isok(m) = my(s=sigma(m)); (frac(m*(m-numdiv(m))/s) == 0) && (frac(s/m) == 0); \\ Michel Marcus, Mar 25 2019
Comments