OFFSET
1,1
COMMENTS
The numbers x, y, z, t and w form a sigma-cubic quintuple. See Dimitrov link.
LINKS
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
EXAMPLE
(174, 190, 323, 5, 94) is such a quintuple because sigma(174)^3 = sigma(190)^3 = sigma(323)^3 = 360^3 = 174^3 + 190^3 + 323^3 + 5^3 + 94^3.
PROG
(PARI) is23(n) = my(z); for(k=1, sqrtnint(n\2, 3), ispower(n-k^3, 3, &z) && return([k, z]));
isok3(x) = my(s=sigma(x), v=select(z->(z>=x), invsigma(s))); if (#v >= 1, for (i=1, #v, for (j=1, #v, my(k=s^3 - x^3 - v[i]^3-v[j]^3); if (k>0, my(tw = is23(k)); if (tw, return([x, v[i], v[j], tw[1], tw[2]])); ); ); ); ); \\ Michel Marcus, Jul 22 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
S. I. Dimitrov, Jul 20 2025
EXTENSIONS
Corrected and extended by Michel Marcus, Jul 22 2025
STATUS
approved
