A055650 Numbers k such that k | phi(k)*d(k) - sigma(k), where phi=A000010, d=A000005 and sigma=A000203.
1, 3, 14, 42, 76, 376, 3608, 163712, 163944, 196128, 277688, 491136, 833064, 849120, 905814, 911008, 1080328, 1653520, 1847898, 1935128, 2733024, 3145216, 3240984, 4586240, 4734736, 4960560, 5805384, 13758720, 16582752, 25244956, 34961040, 38521440, 48177990, 56240352
Offset: 1
Keywords
References
- Inspired by David Wells, Curious and Interesting Numbers (Revised), Penguin Books.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..89 (terms < 2*10^12)
Programs
-
Mathematica
Do[If[Mod[EulerPhi[n]*DivisorSigma[0, n]-DivisorSigma[1, n], n]==0, Print[n]], {n, 1, 1.05*10^7}] Select[Range[6000000],Divisible[EulerPhi[#]DivisorSigma[0,#]- DivisorSigma[ 1,#], #]&] (* Harvey P. Dale, Mar 10 2012 *)
-
PARI
isok(k) = {my(f=factor(k)); (eulerphi(f)*numdiv(f)-sigma(f))%k == 0; } \\ Jinyuan Wang, Mar 17 2020
Extensions
More terms from Jinyuan Wang, Mar 17 2020
Comments