login
A351549
Numbers k for which k * gcd(sigma(k), A019565(k)) is equal to sigma(k) * gcd(k, A019565(k)).
5
1, 1456, 15480, 114660, 2244600, 3894768, 25108200, 27052704, 65021040, 112402080, 1973921400
OFFSET
1,2
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.
PROG
(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)); };
KEYWORD
nonn,more
AUTHOR
Antti Karttunen, Feb 19 2022
STATUS
approved