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.

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

Original entry on oeis.org

1, 1, 5, 37, 345, 3851, 49468, 713931, 11391985, 198523495, 3741919446, 75702725440, 1633591960883, 37404262517506, 904734768056239, 23030071358784701, 614912094171482849, 17172036245893988575, 500281954849350450946, 15170753984617328108901
Offset: 0

Views

Author

Seiichi Manyama, Apr 07 2025

Keywords

Crossrefs

Main diagonal of A381425.

Programs

  • Magma
    [&+[Binomial(n,k) * Binomial((n-1)*(k+1),n-k): k in [0..n]]: n in [0..21]]; // Vincenzo Librandi, Apr 09 2025
  • Mathematica
    Table[Sum[Binomial[n,k] * Binomial[(n-1)*(k+1),n-k], {k,0,n}], {n, 0, 20}] (* Vaclav Kotesovec, Apr 07 2025 *)
  • PARI
    a(n) = sum(k=0, n, binomial(n, k)*binomial((n-1)*(k+1), n-k));
    

Formula

a(n) = [x^n] (1 + x/(1-x)^n)^n.