cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A067584 Product of divisors of n-th perfect number.

Original entry on oeis.org

36, 21952, 30019840638976, 2343612817652433441167245312, 68243196466656578806189194595182660833083134598062479091851170386830226748067289941548778081222656
Offset: 1

Views

Author

Rick L. Shepherd, Jan 31 2002

Keywords

Comments

This is a subsequence of A007955, product of divisors of n.

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)).
		

Crossrefs

Programs

  • Mathematica
    f[n_] := n^(DivisorSigma[0, n]/2); f /@ PerfectNumber[Range[5]] (* Amiram Eldar, Oct 17 2024 *)

Formula

a(n) = A000396(n)^A000043(n) whenever A000396(n) is an even perfect number. (Proof of the existence of odd perfect numbers is a well-known open problem.) A000043(n) is a Mersenne exponent.
a(n) = A007955(A000396(n)). - Amiram Eldar, Oct 17 2024