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.

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

Original entry on oeis.org

1, 1, 7, 55, 571, 7026, 98925, 1562219, 27214867, 516646333, 10589130223, 232574622116, 5440521381816, 134859301929873, 3527034780915985, 96965997588549555, 2793286163779275779, 84076751617833902070, 2637677096916448507104
Offset: 0

Views

Author

Seiichi Manyama, Apr 08 2023

Keywords

Crossrefs

Main diagonal of A362078.
Main diagonal of A362079.
Cf. A099237.

Programs

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

Formula

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