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.

A068390 Numbers k such that sigma(k) = 4*phi(k).

Original entry on oeis.org

14, 105, 248, 418, 1485, 3135, 3596, 3956, 4064, 5396, 8636, 20026, 23374, 25714, 35074, 35343, 39105, 41656, 55154, 56134, 56536, 71145, 74613, 87087, 124605, 150195, 175305, 192855, 263055, 393104, 413655, 421005, 474548, 604012, 697851, 711988, 819772
Offset: 1

Views

Author

Benoit Cloitre, Mar 03 2002

Keywords

Comments

If 2^p-1 is a prime (Mersenne prime) greater than 3 then 2^(p-2)*(2^p-1) is in the sequence. So for n>1, 2^(A000043(n)-2)*(2^A000043(n)-1) is in the sequence. - Farideh Firoozbakht, Feb 23 2005
Theorem: If m>0, k is an integer and p=2^(m+2)+k-1 is a prime number then n=2^m*p is a solution to the equation sigma(x) = 4*phi(x)-k. The previous comment is the special case k=0. - Farideh Firoozbakht, Oct 01 2014

References

  • D. S. Mitrinovic et al., Handbook of Number Theory, Kluwer, p. 88.

Crossrefs

Subsequence of A248150 (sigma(k) is divisible by 4).

Programs

  • Magma
    [n: n in [1..10^6] | SumOfDivisors(n) eq 4*EulerPhi(n)]; // Vincenzo Librandi, Sep 25 2017
  • Mathematica
    Select[Range[900000],DivisorSigma[1,#]==4EulerPhi[#]&] (* Harvey P. Dale, Nov 29 2013 *)
  • PARI
    for(n=1,300000, if(sigma(n)==4*eulerphi(n),print1(n,",")))
    

Extensions

More terms from Carl Najafi, Aug 16 2011