OFFSET
1,1
COMMENTS
The numbers x, y, z and w form a sigma-cubic quadruple. See Dimitrov link.
LINKS
S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
EXAMPLE
(255, 321, 84, 312) is such a quadruple because sigma(255)^3 = sigma(321)^3 = 432^3 = 255^3 + 321^3 + 84^3 + 312^3.
PROG
(PARI) issc(n) = if (n>0, for(k=1, sqrtnint(n\2, 3), ispower(n-k^3, 3) && return(1))); \\ A003325
isok(x) = my(s=sigma(x)); for (y=1, x, if (s == sigma(y), if (issc(s^3-x^3-y^3), return(1)); ); ); \\ Michel Marcus, Jun 27 2025
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
S. I. Dimitrov, Jun 27 2025
EXTENSIONS
More terms from David A. Corneth, Jun 27 2025
STATUS
approved
