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.

A218980 Integers not in A218852.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 9, 11, 12, 17, 18, 22, 23, 24, 29, 30, 36, 37, 41, 47, 48, 53, 59, 60, 67, 71, 72, 79, 83, 89, 97, 101, 107, 113, 120, 127, 131, 137, 144, 149, 157, 163, 167, 173, 179, 180, 191, 197, 210, 211, 223, 227, 233, 239, 240, 251, 257, 263, 269, 277
Offset: 1

Views

Author

Jon Perry, Nov 08 2012

Keywords

Comments

Conjecture: This sequence is infinite.

Crossrefs

Cf. A218852.

Programs

  • JavaScript
    function divisorSum(n) {
    c=0;
    for (i=1;i<=n;i++) if (n%i==0) c+=i;
    return c;
    }
    ds=new Array();
    for (j=1;j<1001;j++) ds[j]=divisorSum(j);
    a=new Array();
    ac=0;
    for (j=1;j<300;j++)
    for (k=1;k<=j;k++)
    for (m=1;m<=k;m++)
    if (ds[j]+ds[k]+ds[m]==ds[j+k+m]) a[ac++]=j+k+m;
    a.sort(function(a, b) {return a-b;});
    i=0;
    while(i++