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.

A351549 Numbers k for which k * gcd(sigma(k), A019565(k)) is equal to sigma(k) * gcd(k, A019565(k)).

Original entry on oeis.org

1, 1456, 15480, 114660, 2244600, 3894768, 25108200, 27052704, 65021040, 112402080, 1973921400
Offset: 1

Views

Author

Antti Karttunen, Feb 19 2022

Keywords

Comments

Numbers k such that their abundancy index [sigma(k)/k] is equal to A351557(k)/A351556(k).
Question: If the above ratio is neither 1 nor 2, must it then be > 2? Are all even terms abundant?
a(12) > 2281701376 if it exists.

Crossrefs

Programs

  • PARI
    A019565(n) = { my(m=1, p=1); while(n>0, p = nextprime(1+p); if(n%2, m *= p); n >>= 1); (m); };
    isA351549(n) = { my(s=sigma(n), z=A019565(n)); (n*gcd(s,z))==(s*gcd(n,z)); };