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.

A063515 Sum of divisors of Woodall (or Riesel) numbers; sigma(A003261(n)); sigma(n*2^n - 1).

Original entry on oeis.org

1, 8, 24, 104, 216, 384, 1080, 2160, 4896, 13656, 32552, 51312, 137160, 287408, 573600, 1999872, 3034368, 4778400, 11098080, 20984560, 49533120, 137218560, 294000768, 417361152, 958698064, 1755253280, 4362821232, 10552800000
Offset: 1

Views

Author

Jason Earls, Jul 31 2001

Keywords

Crossrefs

Programs

  • PARI
    j=[]; for(n=1,50,x=sigma(n*2^n-1); j=concat(j,x)); j
    
  • PARI
    { for (n=1, 200, write("b063515.txt", n, " ", sigma(n*2^n - 1)) ) } \\ Harry J. Smith, Aug 24 2009

Formula

a(n) = sigma(n*2^n-1).