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.

A063885 z(sigma(n)) = 2n, where z(n) = A048146.

Original entry on oeis.org

24, 1536, 1631, 47360, 82458
Offset: 1

Views

Author

Jason Earls, Aug 28 2001

Keywords

Crossrefs

Programs

  • PARI
    u(n) = sumdiv(n,d, if(gcd(d,n/d)==1,d));
    z(n) = sigma(n)-u(n);
    for(n=1,10^7, if(z(sigma(n))==2*n,print1(n, ", ")))