OFFSET
1,1
COMMENTS
Odd values of A051612(n) sorted along n.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
sigma(4) - phi(4) = 7 - 2 = 5. Since 5 is the first odd value of sigma(n) - phi(n), it appears first in the list. So a(1) = 5.
MAPLE
select(type, [seq(numtheory:-sigma(n)-numtheory:-phi(n), n=1..2000)], odd); # Robert Israel, Aug 11 2019
MATHEMATICA
Select[Table[DivisorSigma[1, n]-EulerPhi[n], {n, 2000}], OddQ] (* Harvey P. Dale, Sep 27 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jun 28 2013
STATUS
approved