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.

A217842 Product of the numbers p such that phi(p) = n, where phi is Euler's totient function.

Original entry on oeis.org

2, 72, 1, 4800, 1, 15876, 1, 3456000, 1, 242, 1, 300500928, 1, 1, 1, 2130739200, 1, 1052676, 1, 119790000, 1, 1058, 1, 531598161669120000, 1, 1, 1, 1682, 1, 1922, 1, 20864198246400, 1, 1, 1, 1159208596538496, 1, 1, 1, 265804426800000000, 1, 17757796, 1
Offset: 1

Views

Author

T. D. Noe, Oct 12 2012

Keywords

Comments

It appears that all terms greater than 1 are distinct. This is true for all n <= 10^6.

Crossrefs

Cf. A002181 (smallest inverse), A006511 (largest inverse), A215240 (sum of inverses).
Cf. A032447 (inverse of phi).

Programs

  • Mathematica
    Needs["CNT`"]; Table[Times @@ PhiInverse[n], {n, 100}]
  • PARI
    a(n) = vecprod(invphi(n)); \\ Amiram Eldar, Nov 15 2024, using Max Alekseyev's invphi.gp