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.

A331019 a(n) is the least k such that the denominator(sigma(sigma(k*n))/(k*n)) equals n.

Original entry on oeis.org

1, 15, 1, 8, 1, 144, 1, 16, 1, 1, 1, 8, 1, 255, 3, 16, 1, 12, 1, 2, 7, 1, 1, 288, 1, 18, 21, 8, 1, 84, 1, 13, 1, 11, 1, 4096, 1, 4, 3, 270, 1, 2448, 1, 2, 3, 1, 1, 16, 1, 420, 3, 1, 1, 124, 3, 16, 3, 128, 1, 616, 1, 85, 3, 16, 1, 1, 1, 8, 3, 1, 1, 32, 1, 64
Offset: 1

Views

Author

Ray Chandler, Jan 09 2020

Keywords

Comments

a(n) is the least k such that the A318060(k*n) equals n.

Crossrefs

Cf. A000203 (sigma), A051027 (sigma(sigma)), A318060.

Programs

  • PARI
    a(n) = my(k=n); while (denominator(sigma(sigma(k))/k) != n, k+=n); k/n;

Formula

a(n) = A331033(n)/n.