I would like to check the solution of this equation:
$$2\sigma(n)=3n$$ where $\sigma(n)$ is the sum divisor function.
Note: I know only $n=2$ is a theortitical solution, are there a closed form of near solution of the titled equation ?
for example until now i find this :$n={29}^{16}+1$
EDIT:I edited the question because it is related to the precedent question
For a near solution, you can look at $21$. We have $\sigma(21)=1+3+7+21=32$, so $2\sigma(21)=64=3(21)+1$. You won't get any less absolute error than that. You can find near solutions with much smaller relative error. Let $n$ be a product of large primes $n=pqr\dots z$ Then $\frac {\sigma(n)}n = 1+\frac 1p + \frac 1q +\frac 1r +\dots \frac 1z +\frac 1{pq}+\frac 1{pr}+\dots$ Start from some large prime (maybe your friend $\frac 12(29^{16}+1)$) and keep multiplying by successive primes until the right side is very close to $\frac 32$ As the sum of the inverses of the primes diverges, you can always exceed $\frac 32$ by taking enough of them, no matter how high you start. It will take a lot of them. You can tune it even closer by deleting the one that takes you just over $\frac 32$ and looking for the next larger prime that fits underneath $\frac 32$
For example, starting with the "large prime" $17$ I find $$17*19*23*29*31*37*41*43*47*53*59*61*67*71*73=1356299720254712758928449\\ \sigma(1356299720254712758928449)=2034799419064923979776000\\ 2*2034799419064923979776000-3*1356299720254712758928449=699677365709682766653$$ with a relative error of about$\frac {7 \cdot 10^{20}}{2*2034799419064923979776000} \approx 0.000017$ You can improve that by replacing $73$ with $79$, then adding in much larger primes to get close to the ratio $\frac 32$. I don't trust the precision in Excel that far.