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.

A308423 Product of divisors of multiply-perfect numbers.

Original entry on oeis.org

1, 36, 21952, 42998169600000000, 30019840638976, 8480691722056324948490652657647616, 2343612817652433441167245312
Offset: 1

Views

Author

Jaroslav Krizek, May 26 2019

Keywords

Comments

a(8) has 216 digits (116929951...000000000).
Supersequence of A067584.

Examples

			For n = 3; a(3) = A007955(A007691(3)) = A007955(28) = 21952.
		

Crossrefs

See A088843 and A307741 for the number of and the sum of divisors of multiply-perfect numbers.

Programs

  • Magma
    [&*[d: d in Divisors(m)]: m in [1..10^5] | IsIntegral(SumOfDivisors(m)/m)]
  • Mathematica
    s = {}; Do[If[Divisible[DivisorSigma[1, n], n], AppendTo[s, n^(DivisorSigma[0, n]/2)]], {n, 10^4}]; s (* Amiram Eldar, Jul 04 2019 *)

Formula

a(n) = A007955(A007691(n)).