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.

A262624 Even amicable numbers.

Original entry on oeis.org

220, 284, 1184, 1210, 2620, 2924, 5020, 5564, 6232, 6368, 10744, 10856, 17296, 18416, 63020, 66928, 66992, 76084, 79750, 88730, 122368, 123152, 141664, 142310, 153176, 168730, 171856, 176272, 176336, 180848, 185368, 196724, 202444, 203432, 280540, 308620, 319550, 356408, 365084, 389924, 399592, 430402, 437456, 455344
Offset: 1

Views

Author

Omar E. Pol, Oct 02 2015

Keywords

Comments

Even numbers that are also amicable numbers.
Intersection of A005843 and A063990.
The first time a pair (x, y) of even amicable numbers ordered by its first element is not adjacent is x = 63020, y = 76084 which correspond to a(15) and a(18), respectively.

Crossrefs

Programs

  • PARI
    t(n)=sigma(n)-n;
    is(n)={local(a); a=t(n); a<>n && t(a)==n};
    for(n=1, 1e6, if( n%2 == 0 && is(n), print1(n", "))) \\ Altug Alkan, Oct 16 2015