OFFSET
1,1
COMMENTS
The numbers x, y, z and t form a sigma-quadratic quadruple. See Dimitrov link.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..97
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
David A. Corneth, PARI program
S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
EXAMPLE
(3480, 3672, 4296, 8520) is such a quadruple because sigma(3480)^2 = sigma(3672)^2 = sigma(4296)^2 = 3480^2 + 3672^2 + 4296^2 + 8520^2.
PROG
(PARI) isok(x) = my(s=sigma(x), vi=select(t->(t>=x), invsigma(s))); for (i=1, #vi, for (j=1, #vi, for (k=1, #vi, if ((i==1) || (j==1) || (k==1), my(ss = s^2 - vi[i]^2 - vi[j]^2 - vi[k]^2); if (ss && issquare(ss), return(1)); ); ); ); ); \\ Michel Marcus, Jul 09 2025
(PARI) \\ See Corneth link
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
S. I. Dimitrov, Jul 02 2025
EXTENSIONS
Some missing terms added by Michel Marcus, Jul 09 2025
More terms from David A. Corneth, Jul 09 2025
STATUS
approved
