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.

A374614 a(n) = Sum_{k=0..n} (k/n)^2 * binomial(n,k)^5.

Original entry on oeis.org

1, 9, 136, 2585, 54126, 1227492, 29226688, 723533337, 18438032890, 480994824134, 12787403151744, 345355150592036, 9451729196625184, 261628075707534720, 7313361005558843136, 206190939973811373593, 5857313490484652859282
Offset: 1

Views

Author

Seiichi Manyama, Jul 14 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(k/n)^2 Binomial[n,k]^5,{k,0,n}],{n,20}] (* Harvey P. Dale, Jun 16 2025 *)
  • PARI
    a(n) = sum(k=0, n-1, binomial(n-1, k)^2*binomial(n, k)^3);

Formula

a(n) = Sum_{k=0..n-1} binomial(n-1,k)^2 * binomial(n,k)^3.