A136539 Numbers n such that n=6*phi(n)-sigma(n).
76, 1264, 327424, 5241856, 83881984, 1342160896, 343597121536
Offset: 1
Examples
6*phi(76)-sigma(76)=6*36-140=76 so 76 is in the sequence.
Programs
-
Mathematica
Do[If[n==6*EulerPhi[n]-DivisorSigma[1,n],Print[n]],{n,85000000}]
Formula
a(n) = 2^k*(5*2^k-1) = A084213(k+1) with k = A001770(n), for n = 1,...,7. - M. F. Hasler, Nov 03 2012
Extensions
a(7) from Giovanni Resta, Nov 03 2012
Comments