login
A376299
Fixed points of A008473.
1
1, 4, 90, 120
OFFSET
1,2
COMMENTS
These are the numbers such that the sum of the powerfree parts of the divisors of n equals n.
These fixed points appeared in A299352 and the linked Combo Class video. The former notes there are no more fixed points <= 10^8. - Michael S. Branicky, Sep 19 2024
Any further terms are > 10^11. - Lucas A. Brown, Oct 19 2024
PROG
(Python)
from sympy import factorint, prod
A008473 = lambda n: prod(sum(pk) for pk in factorint(n).items())
isok = lambda n: A008473(n) == n
print([n for n in range(1, 10**6) if isok(n)])
CROSSREFS
Sequence in context: A220341 A184955 A205295 * A292304 A337081 A218385
KEYWORD
nonn,more,hard
AUTHOR
Darío Clavijo, Sep 19 2024
STATUS
approved