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.

A163667 Numbers n such that sigma(n) = 9*phi(n).

Original entry on oeis.org

30, 264, 714, 3080, 3828, 6678, 10098, 12648, 21318, 22152, 24882, 44660, 49938, 61344, 86304, 94944, 118296, 129504, 130356, 147560, 183396, 199386, 201756, 207264, 216936, 248710, 258440, 265914, 275196, 290290, 321204, 505164, 628776, 706266, 706836
Offset: 1

Views

Author

Keywords

Comments

This sequence is a subsequence of A011257 because sqrt(phi(n)*sigma(n)) = 3*phi(n).
If 2^p-1 and 2*3^k-1 are two primes greater than 5 then n = 2^(p-2)*(2^p-1)*3^(k-1)*(2*3^k-1) (the product of two relatively prime terms 2^(p-2)*(2^p-1) and 3^(k-1)*(2*3^k-1) of A011257) is in the sequence. The proof is easy.

Crossrefs

Programs

  • Mathematica
    Select[Range[700000],DivisorSigma[1,# ]==9EulerPhi[ # ]&]
  • PARI
    is(n)=sigma(n)==9*eulerphi(n) \\ Charles R Greathouse IV, May 09 2013