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.

A015768 Numbers k such that phi(k) | sigma_10(k).

Original entry on oeis.org

1, 2, 3, 6, 22, 33, 66, 166, 250, 375, 498, 750, 1506, 1826, 5478, 8250, 10375, 10873, 16566, 17762, 20750, 21746, 31125, 32619, 41666, 53286, 62250, 62499, 65238, 98250, 110066, 119603, 124998, 177153, 195382, 228250, 239206
Offset: 1

Views

Author

Keywords

Comments

sigma_10(k) = A013958(k) is the sum of the 10th powers of the divisors of k.

Crossrefs

Programs

  • Magma
    [k:k in [1..240000]| IsIntegral(DivisorSigma(10,k)/EulerPhi(k))]; // Marius A. Burtea, Nov 06 2019
  • Mathematica
    Select[Range[240000], Divisible[DivisorSigma[10, #], EulerPhi[#]] &] (* Amiram Eldar, Nov 06 2019 *)