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.

A306842 a(n) = Sum_{d|n} binomial(n,d)*binomial(n,n/d).

Original entry on oeis.org

1, 4, 6, 44, 10, 612, 14, 3936, 7074, 22700, 22, 339792, 26, 624652, 2732760, 6401232, 34, 45174204, 38, 220441080, 309304842, 325909628, 46, 7330314960, 2822796950, 6760390052, 27417926304, 78814587656, 58, 548150764560, 62, 1352747882944, 2111872688706
Offset: 1

Views

Author

Seiichi Manyama, Mar 12 2019

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, Binomial[n, #] * Binomial[n, n/#] &]; Array[a, 30] (* Amiram Eldar, Jun 13 2021 *)
  • PARI
    {a(n) = sumdiv(n, d, binomial(n, d)*binomial(n, n/d))}

Formula

If p is prime, a(p) = 2*p.