OFFSET
1,1
COMMENTS
It appears that the equation x + phi(x) = sigma(x) has the unique solution x=2. It is easy to show that this is the only even solution to the equation, but for odd solutions this is less obvious. The present sequence is motivated by the observation that for most odd numbers, the l.h.s. is larger than the r.h.s. (while the opposite is the case for all even numbers). (See also formulas in A228947.)
From Amiram Eldar, Dec 23 2024: (Start)
If k is an odd abundant number (A005231), then (k-1)/2 is a term of this sequence.
The numbers of terms that do not exceed 10^k, for k = 1, 2, ..., are 1, 9, 99, 981, 9879, 98613, 984293, 9850470, 98496984, 985005850, 9850433480, ... . Apparently, the asymptotic density of this sequence exists and equals 0.0985... . (End)
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1000], DivisorSigma[1, 2*#+1] > EulerPhi[2*#+1] + 2*#+1 &] (* Amiram Eldar, Dec 23 2024 *)
PROG
(PARI) select(n->(2*n+1+eulerphi(2*n+1)<sigma(2*n+1)), vector(900, n, n-1))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
M. F. Hasler, Oct 05 2013
STATUS
approved