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.

A219362 Numbers n such that the product of divisors of sigma(n) is divisible by the product of divisors of n.

Original entry on oeis.org

1, 6, 24, 28, 120, 224, 270, 496, 672, 864, 3375, 3724, 4320, 4680, 6048, 6200, 6860, 8128, 10976, 11172, 13000, 14336, 15872, 18620, 26208, 27000, 29792, 30240, 32760, 39546, 43008, 43875, 47616, 54880, 55860, 58752, 71680, 80262, 84375, 89376, 98865, 99200
Offset: 1

Views

Author

Michel Marcus, Nov 19 2012

Keywords

Comments

That is, numbers such that A007955(n) | A007955(A000203(n)).
F. Luca proved that this sequence is infinite.

Crossrefs

Programs

  • Mathematica
    Select[Range[100000], Mod[Times @@ Divisors[DivisorSigma[1, #]], Times @@ Divisors[#]] == 0 &] (* T. D. Noe, Nov 19 2012 *)
  • PARI
    A007955(n)=if(issquare(n, &n), n^numdiv(n^2), n^(numdiv(n)/2))
    is(n)=A007955(sigma(n))%A007955(n)==0 \\ Charles R Greathouse IV, Feb 04 2013