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.

A298080 Integers m such that both phi(m) and sigma(m) are coprime to tau(m).

Original entry on oeis.org

1, 2, 4, 16, 25, 64, 81, 100, 121, 256, 289, 484, 529, 729, 841, 1024, 1156, 1296, 1600, 1681, 2116, 2209, 2401, 2809, 3025, 3364, 3481, 4096, 4624, 5041, 5184, 6400, 6724, 6889, 7225, 7921, 8464, 8836, 10201, 11236, 11449, 11664, 12100, 12769, 13225, 13456, 13924
Offset: 1

Views

Author

Michel Marcus, Jan 12 2018

Keywords

Crossrefs

Intersection of A046678 and A225983.

Programs

  • Mathematica
    Select[Range[14000], CoprimeQ[EulerPhi[#], (d = DivisorSigma[0, #])] && CoprimeQ[DivisorSigma[1, #], d] &] (* Amiram Eldar, Aug 08 2020 *)
  • PARI
    isok(n) = (gcd(eulerphi(n), numdiv(n))==1) && (gcd(sigma(n), numdiv(n)) == 1);