cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A259302 Numbers n such that there exists an x!=n that makes {n,n,x} an amicable multiset.

Original entry on oeis.org

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

Views

Author

Jeppe Stig Nielsen, Jun 23 2015

Keywords

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.

Crossrefs

Programs

  • PARI
    isOK(n) = x=sigma(n)-2*n; x>0 && x!=n && sigma(x)==n+n+x;