login
A259302
Numbers n such that there exists an x!=n that makes {n,n,x} an amicable multiset.
10
1740, 7776, 19260, 20640, 21384, 21924, 22428, 25830, 31440, 55968, 93024, 101010, 106140, 143910, 151164, 198792, 246510, 309582, 326196, 411138, 421596, 428256, 499464, 590112, 639288, 697158, 870552, 941094, 958716, 1060956, 1068210, 1087776, 1100640
OFFSET
1,1
COMMENTS
We call the multiset {n,n,x} amicable iff sigma(n)=sigma(x)=n+n+x.
For the x values, see A259303.
If the condition x!=n were dropped, the terms from A005820 would also belong here.
PROG
(PARI) isOK(n) = x=sigma(n)-2*n; x>0 && x!=n && sigma(x)==n+n+x;
KEYWORD
nonn
AUTHOR
Jeppe Stig Nielsen, Jun 23 2015
STATUS
approved