OFFSET
1,1
COMMENTS
Includes p * q * r^2 where p, q, r are distinct primes with (p + 1)*(q + 1) = 144. The possible {p,q} pairs are {2, 47}, {5, 23}, {7, 17}. - Robert Israel, Nov 11 2025
LINKS
Robert Israel, Table of n, a(n) for n = 1..1000
EXAMPLE
460 is in the sequence since sigma(460) = 1008 = 864 + 12^2 = psi(460) + tau(460)^2.
MAPLE
filter:= proc(n) local F, sigma, psi, tau, t;
F:= ifactors(n)[2];
sigma:= mul((t[1]^(1+t[2])-1)/(t[1]-1), t=F);
psi:= n * mul(1+1/t[1], t=F);
tau:= mul(1+t[2], t=F);
sigma = psi + tau^2
end proc:
select(filter, [$1..10^5]); # Robert Israel, Nov 11 2025
MATHEMATICA
psi[n_] := n * Times @@ (1 + 1/FactorInteger[n][[;; , 1]]); psi[1] = 1; Select[Range[61000], DivisorSigma[1, #] == psi[#] + DivisorSigma[0, #]^2 &] (* Amiram Eldar, Oct 31 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
S. I. Dimitrov, Oct 31 2025
STATUS
approved
