OFFSET
1,1
COMMENTS
The numbers x, y and z form an amicable triple according to Yanney's definition.
LINKS
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
Benjamin Franklin Yanney, Another definition of amicable numbers and some of their relations to Dickson's amicables, Amer. Math. Monthly, Vol. 30, No. 6 (1923), 311-315.
EXAMPLE
238 is in the sequence since sigma(238) = sigma(255) = sigma(371) = 432 = (238 + 255 + 371)/2.
PROG
(PARI) isok(x1) = my(s=sigma(x1), vx=select(x->(x>=x1), invsigma(s)), v=vector(3, i, vx[1])); for (i=1, #vx, v[2] = vx[i]; for (j=1, #vx, v[3] = vx[j]; if (vecsum(v) == 2*s, return(1)); ); ); \\ Michel Marcus, Aug 01 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
S. I. Dimitrov, Jul 31 2025
EXTENSIONS
More terms from Michel Marcus, Aug 01 2025
STATUS
approved
