OFFSET
1,1
COMMENTS
Let sigma be the usual sum-of-divisors function. We say that x and y form a cross-harmonious pair if y/sigma(x) + x/sigma(y) = 1. An amicable pair forms a cross-harmonious pair, so the larger member of an amicable pair A002046 is a term of this sequence.
If a < b are Mersenne exponents (A000043) then 2^(a-1) * (2^b - 1) is a term, as it and 2^(b-1) * (2^a - 1) are a cross-harmonious pair. - Robert Israel, Jul 07 2025
LINKS
Robert Israel, Table of n, a(n) for n = 1..500
S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
EXAMPLE
12 and 14 form a cross-harmonious pair since 14/sigma(12) + 12/sigma(14) = 14/28 + 12/24 = 1.
MAPLE
N:= 10000: # for terms <= N
S:= map(numtheory:-sigma, [$1..N]):
filter:= proc(x) ormap(y -> y/S[x]+x/S[y]=1, [$1..x-1]) end proc:
select(filter, [$1..N]); # Robert Israel, Jul 07 2025
PROG
(PARI) isok(y) = for (x=1, y-1, if (y/sigma(x) + x/sigma(y) == 1, return(x)); ); \\ Michel Marcus, Jun 09 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
S. I. Dimitrov, Jun 07 2025
STATUS
approved
