A067584 Product of divisors of n-th perfect number.
36, 21952, 30019840638976, 2343612817652433441167245312, 68243196466656578806189194595182660833083134598062479091851170386830226748067289941548778081222656
Offset: 1
Keywords
Examples
a(2) = 21952 because a(2) = 1*2*4*7*14*28=21952 (= 28^3) is the product of all (3*2) divisors of the 2nd perfect number, 28 (= 2^(3-1) * (2^3 - 1)). a(6), a 169 decimal digit number (= 8589869056^17), is the product of all (17*2) divisors of the 6th perfect number, 8589869056 (= 2^(17-1) * (2^17 - 1)).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..8
Programs
-
Mathematica
f[n_] := n^(DivisorSigma[0, n]/2); f /@ PerfectNumber[Range[5]] (* Amiram Eldar, Oct 17 2024 *)
Comments