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.

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

Original entry on oeis.org

1441440, 1860768, 3205440, 3378240, 3423420, 3914820, 4029480, 4437720, 5738040, 6093360, 6807240, 7136640, 7239120, 7551360, 9402120, 10204740, 12270720, 12405120, 12942720, 13495680, 14627340, 14725620, 15233400, 17166240, 18097800, 19158048, 23023440
Offset: 1

Views

Author

Jeppe Stig Nielsen, Jun 23 2015

Keywords

Comments

We call the multiset {n,n,x,x} amicable iff sigma(n)=sigma(x)=n+n+x+x.
If the condition x!=n were dropped, the terms from A027687 would also belong here.

Crossrefs

Programs

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