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.

A015771 Numbers k such that phi(k) | sigma_13(k).

Original entry on oeis.org

1, 2, 3, 6, 12, 14, 15, 30, 35, 42, 56, 70, 78, 105, 140, 168, 190, 210, 248, 264, 270, 357, 418, 420, 570, 594, 616, 630, 714, 744, 749, 812, 840, 910, 1045, 1240, 1254, 1485, 1498, 1672, 1848, 2090, 2214, 2247, 2376, 2436, 2568, 2580, 2730
Offset: 1

Views

Author

Keywords

Comments

sigma_13(n) is the sum of the 13th powers of the divisors of n.

Crossrefs

Programs

  • Maple
    with(numtheory); a := []: for n from 1 to 3000 do if sigma[13](n) mod phi(n) = 0 then a := [op(a), n]; fi; od: a;
  • Mathematica
    Select[Range[3000], Divisible[DivisorSigma[13, #], EulerPhi[#]] &] (* Amiram Eldar, Nov 02 2019 *)

Formula

{n: A000010(n) | A013961(n)}. - R. J. Mathar, Sep 21 2017

Extensions

Offset corrected by Amiram Eldar, Nov 02 2019