login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A055698
Numbers n such that n | (sigma_4(n) + phi(n)^4).
0
1, 2, 6, 13588, 48238, 54490, 69004, 194460, 353228, 577980, 638652, 1478962, 1882188, 2190515, 2677740, 3404598, 3875508, 8456460, 9978863, 16320458, 41199780, 45112860, 76132715, 236405988, 357846865, 682983756, 689274612, 733141332, 1185444052, 1752193128
OFFSET
1,2
COMMENTS
Sigma_4(n) is the sum of the 4th powers of the divisors of n (A001159).
MATHEMATICA
Do[If[Mod[DivisorSigma[4, n] + EulerPhi[n]^4, n]==0, Print[n]], {n, 1, 10^6}]
PROG
(PARI) isok(k) = (sigma(k, 4) + eulerphi(k)^4)%k == 0; \\ Jinyuan Wang, Mar 17 2020
CROSSREFS
Cf. A001159.
Sequence in context: A355556 A162146 A231545 * A121167 A115658 A337096
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jun 09 2000
EXTENSIONS
More terms from Robert G. Wilson v, Mar 11 2013
More terms from Jinyuan Wang, Mar 17 2020
STATUS
approved