OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
phi(99)+sigma(99) = 60+156 = 216 = 6^3, so 99 is a term of the sequence.
MATHEMATICA
Select[Range[10^5], IntegerQ[(EulerPhi[ # ] + DivisorSigma[1, # ])^(1/3)] &]
PROG
(PARI) isok(n) = ispower(eulerphi(n)+sigma(n), 3); \\ Michel Marcus, Sep 28 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Feb 13 2002
STATUS
approved