Let $\sigma(x)=\sigma_1(x)$ be the classical sum of divisors of the positive integer $x$.
My question in the present post is closely related to this one in MO:
QUESTION
Does there exist a nontrivial prime power $q^k$ such that $\sigma(n^2)/n = q^k$ for some $n$?
I tried checking for examples of numbers $2 \leq n \leq {10}^6$ satisfying the divisibility constraint $$n \mid \sigma(n^2)$$ using a Pari-GP script, via Sage Cell Server:
for(n=2, 1000000, if((Mod(sigma(n^2),n) == 0),print(n,factor(n))))
Here is the output:
39[3, 1; 13, 1]
793[13, 1; 61, 1]
2379[3, 1; 13, 1; 61, 1]
7137[3, 2; 13, 1; 61, 1]
13167[3, 2; 7, 1; 11, 1; 19, 1]
76921[13, 1; 61, 1; 97, 1]
78507[3, 2; 11, 1; 13, 1; 61, 1]
230763[3, 1; 13, 1; 61, 1; 97, 1]
238887[3, 2; 11, 1; 19, 1; 127, 1]
549549[3, 2; 7, 1; 11, 1; 13, 1; 61, 1]
692289[3, 2; 13, 1; 61, 1; 97, 1]
863577[3, 2; 11, 2; 13, 1; 61, 1]
The Pari-GP interpreter of Sage Cell Server crashes as soon as a search limit of ${10}^7$ is specified.
OEIS sequence A232354 lists $187$ additional examples.
I skimmed through the list of the first $199$ examples (not including $1$) in OEIS and noted that all of them are odd. Additionally, here are the corresponding integer values for $\sigma(n^2)/n$ for $2 \leq n \leq {10}^6$: $$\frac{\sigma({39}^2)}{39} = 61,$$ $$\frac{\sigma({793}^2)}{793} = 873 = {3^2} \times {97},$$ $$\frac{\sigma({2379}^2)}{2379} = 3783 = 3 \times {13} \times {97},$$ $$\frac{\sigma({7137}^2)}{7137} = 11737 = {11}^2 \times {97},$$ $$\frac{\sigma({13167}^2)}{13167} = 26543 = {11} \times {19} \times {127},$$ $$\frac{\sigma({76921}^2)}{76921} = 85563 = {3^3} \times {3169},$$ $$\frac{\sigma({78507}^2)}{78507} = 141911 = 7 \times {11} \times {19} \times {97},$$ $$\frac{\sigma({230763}^2)}{230763} = 370773 = {3^2} \times {13} \times {3169},$$ $$\frac{\sigma({238887}^2)}{238887} = 417263 = 7 \times {11} \times {5419},$$ $$\frac{\sigma({549549}^2)}{549549} = 1155561 = 3 \times {11} \times {{19}^2} \times {97},$$ $$\frac{\sigma({692289}^2)}{692289} = 1150347 = 3 \times {{11}^2} \times {3169},$$ $$\frac{\sigma({863577}^2)}{863577} = 1562185 = 5 \times {97} \times {3221}.$$
(I did the computations one at a time using WolframAlpha.)
Note that $61$ is prime. However, it is not a nontrivial prime power.
I was hoping somebody with more computing power (and better programming skills) could automate the computation and thereby yield my desired result, if there is one at all. (I would be content if this computation were done over this list in OEIS.)
Thank you!