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.

A063476 Sum_{d |C(n)} d^2, where C(n) is the Cototient function n - phi(n) (A051953).

Original entry on oeis.org

0, 1, 1, 5, 1, 21, 1, 21, 10, 50, 1, 85, 1, 85, 50, 85, 1, 210, 1, 210, 91, 210, 1, 341, 26, 250, 91, 341, 1, 610, 1, 341, 170, 455, 122, 850, 1, 546, 260, 850, 1, 1300, 1, 850, 500, 850, 1, 1365, 50, 1300, 362, 1050, 1, 1911, 260, 1365, 500, 1300, 1, 2562, 1, 1365
Offset: 1

Views

Author

Jason Earls, Jul 27 2001

Keywords

Crossrefs

Cf. A051953.

Programs

  • PARI
    C(n)=n-eulerphi(n); j=[]; for(n=1,200,j=concat(j,sumdiv(C(n),d,d^2))); j
    
  • PARI
    { for (n=1, 1000, if (n>1, a=sumdiv(n-eulerphi(n), d, d^2), a=0); write("b063476.txt", n, " ", a) ) } \\ Harry J. Smith, Aug 22 2009