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.

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

Original entry on oeis.org

1, 3, 52, 815, 16806, 363132, 8471296, 205501599, 5164447210, 133153140098, 3506969720904, 93973493327012, 2554956958697248, 70323373958110080, 1956176944656294912, 54916687591986040223, 1554166975730511463794, 44297812047491490990366
Offset: 1

Views

Author

Seiichi Manyama, Jul 14 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n-1, binomial(n-1, k)^4*binomial(n, k));

Formula

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