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.

A356345 a(n) = Sum_{k=1..n} binomial(2*k, k) * sigma_2(k).

Original entry on oeis.org

2, 32, 232, 1702, 8254, 54454, 226054, 1320004, 5744424, 29762704, 115825408, 683698168, 2451800168, 12480950168, 52811505368, 257779918358, 934525722158, 5063712283658, 17858697779258, 93122902514978, 362251839734978, 1645752207604178, 6009470493232178, 33419933623867178
Offset: 1

Views

Author

Vaclav Kotesovec, Aug 04 2022

Keywords

Comments

The average value of a(n) is zeta(3) * n^(3/2) * 4^(n+1) / (3*sqrt(Pi)).

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[2*k, k]*DivisorSigma[2, k], {k, 1, n}], {n, 1, 30}]
  • PARI
    a(n) = sum(k=1, n, binomial(2*k, k) * sigma(k, 2)); \\ Michel Marcus, Aug 05 2022