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.

A104903 Numbers n such that sigma(n) = 16*phi(n).

Original entry on oeis.org

20790, 26040, 43890, 268380, 368280, 377580, 415380, 426720, 547470, 566580, 777480, 906780, 996030, 1659000, 1744470, 2102730, 2179320, 2454270, 2699970, 3682770, 4373880, 5053860, 5340060, 5791170, 5874660, 5894070, 5936280, 6035040, 7067340, 8013060
Offset: 1

Views

Author

Farideh Firoozbakht, Apr 01 2005

Keywords

Comments

If p>3 and 2^p-1 is prime (a Mersenne prime) then 105*2^(p-2)*(2^p-1) is in the sequence. So 105*2^(A000043-2)*(2^A000043-1) is a subsequence of this sequence. It seems that 10 divides all terms of this sequence.

Examples

			p>2, q=2^p-1(q is prime); m=105*2^(p-2)*q so sigma(m)=192*(2^(p-1)-1)*2^p=16*(48*2^(p-3)*(2^p-2))=16*phi(m) hence m is in the sequence.
sigma(1659000)=5990400=16*374400=16*phi(1659000) so 1659000 is in the sequence but 1659000 is not of the form 105*2^(p-2)*(2^p-1).
		

Crossrefs

Programs

  • Mathematica
    Do[If[DivisorSigma[1, m] == 16*EulerPhi[m], Print[m]], {m, 10000000}]
  • PARI
    is(n)=sigma(n)==16*eulerphi(n) \\ Charles R Greathouse IV, May 09 2013