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.

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

Original entry on oeis.org

1, 3, 12, 55, 315, 2106, 15946, 134730, 1253637, 12702961, 138955146, 1629581955, 20371061009, 270124999977, 3783651174906, 55780472480036, 862795543656489, 13963065117796548, 235845816764772718, 4148499020022749151, 75841424406989195136
Offset: 0

Views

Author

Seiichi Manyama, Apr 08 2023

Keywords

Crossrefs

Column k=3 of A362079.

Programs

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

Formula

a(n) = Sum_{k=0..n} binomial(k+2,k) * binomial(n*k,n-k).
a(n) = [x^n] 1/(1 - x*(1+x)^n)^3.