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.

A259694 a(n) = Sum(k^6*sigma(k)*sigma(n-k),k=1..n-1).

Original entry on oeis.org

0, 1, 195, 3496, 38195, 192780, 977386, 3216320, 9860049, 27321870, 65803045, 144005856, 308944925, 635774072, 1112550390, 2153146880, 3618341556, 6391671525, 9949570455, 16725562160, 24691972080, 40979569092, 56807498030, 89450231040, 120404165825
Offset: 1

Views

Author

N. J. A. Sloane, Jul 03 2015

Keywords

Comments

This was formerly A001479.

Crossrefs

Programs

  • Maple
    S:=(n,e)->add(k^e*sigma(k)*sigma(n-k),k=1..n-1); f:=e->[seq(S(n,e),n=1..30)]; f(6);
  • PARI
    a(n) = sum(k=1, n-1, k^6*sigma(k)*sigma(n-k)) \\ Colin Barker, Jul 16 2015