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.

A055716 Numbers n such that n | sigma_12(n).

Original entry on oeis.org

1, 34, 228, 444, 482, 492, 876, 1292, 1308, 2482, 2812, 3876, 5548, 5617, 8194, 8284, 8436, 9348, 10804, 10982, 11234, 13172, 16132, 16644, 17876, 18204, 22468, 24852, 28324, 31828, 32412, 32946, 35186, 35916, 39516, 44914, 46754, 47804, 48396
Offset: 1

Views

Author

Robert G. Wilson v, Jun 09 2000

Keywords

Comments

sigma_12(n) is the sum of the 12th powers of the divisors of n (A013960).

Crossrefs

Cf. A013960.

Programs

  • Magma
    [k:k in [1..50000]| IsIntegral(DivisorSigma(12,k)/ k)]; // Marius A. Burtea, Nov 06 2019
  • Mathematica
    Do[If[Mod[DivisorSigma[12, n], n]==0, Print[n]], {n, 1, 10^5}]