A259305 Numbers n such that there exists an x!=n that makes {x,x,x,n} an amicable multiset.
756000, 1220940, 1437480, 1973160, 5019840, 9058140, 9703260, 11058480, 11641680, 13085280, 17089920, 18117000, 19370880, 21282912, 21628080, 25295760, 25585560, 26936640, 27763560, 28191240, 29104200, 29203020, 30450420, 32839560, 33279120, 33398820
Offset: 1
Keywords
Links
- John Cerkan, Table of n, a(n) for n = 1..1000
Programs
-
PARI
isOK(n) = x=(sigma(n)-n)/3; x>0&x!=n&denominator(x)==1&sigma(x)==3*x+n
Comments