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.

A307741 Sum of divisors of the multiply-perfect numbers.

Original entry on oeis.org

1, 12, 56, 360, 992, 2016, 16256, 120960, 131040, 1571328, 8714160, 94279680, 67100672, 182131200, 571963392, 1379454720, 5517818880, 4428914688, 17179738112, 70912195200, 159991977600, 175445913600, 153003540480, 265734881280, 274877382656, 612014161920
Offset: 1

Views

Author

Jaroslav Krizek, Apr 26 2019

Keywords

Comments

When sorted, this is A081756. - N. J. A. Sloane, May 03 2019

Examples

			For n = 3; a(3) = sigma(A007691(3)) = sigma(28) = 56.
		

Crossrefs

Programs

  • Magma
    [SumOfDivisors(n): n in [1..1000000] | IsIntegral(SumOfDivisors(n)/n)]
    
  • PARI
    lista(nn) = {for (n=1, nn, my(s=sigma(n)); if (! (s % n), print1(s, ", ")););} \\ Michel Marcus, Apr 26 2019

Formula

a(n) = sigma(A007691(n)) = A000203(A007691(n)).
a(n) = A007691(n) * A054030(n).