OFFSET
1,1
COMMENTS
A square root of any hypothetical odd term x in A005820 (triperfect numbers) would be a member of this sequence, because such x should be a term of A342923 [Numbers x such that A342925(x)-x = 3*A003415(x)], and as the right hand side would then certainly be even (A235992 contains all odd squares), the left hand side should also be even. See also comments in A347870 and in A347391.
MATHEMATICA
ad[1] = 0; ad[n_] := n * Total@(Last[#]/First[#]& /@ FactorInteger[n]); Select[Range[1, 3000, 2], (d = ad[DivisorSigma[1, #^2]] - #^2) > 0 && EvenQ[d] &] (* Amiram Eldar, Sep 19 2021 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Sep 19 2021
STATUS
approved