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.

A294955 a(n) = Sum_{d|n} d^(2*n+2).

Original entry on oeis.org

1, 65, 6562, 1049601, 244140626, 78368963450, 33232930569602, 18014467229220865, 12157665462543713203, 10000002384185795209930, 9849732675807611094711842, 11447546167874515876354097130, 15502932802662396215269535105522
Offset: 1

Views

Author

Seiichi Manyama, Nov 12 2017

Keywords

Crossrefs

Programs

  • PARI
    {a(n) = sigma(n, 2*n+2)}
    
  • PARI
    N=20; x='x+O('x^N); Vec(sum(k=1, N, k^(2*k+2)*x^k/(1-(k^2*x)^k)))

Formula

G.f.: Sum_{k>0} k^(2*k+2)*x^k/(1-(k^2*x)^k).