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.

A197209 Row sums of A197208.

Original entry on oeis.org

3, 24, 180, 1320, 9660, 70896, 522648, 3871440, 28809990, 215318400, 1615579680, 12165491520, 91905439080, 696359055840, 5290416835440, 40291036122528, 307537305284574, 2352216447006480, 18024996856976760
Offset: 2

Views

Author

Peter Bala, Oct 12 2011

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n-1,k-1]Binomial[n,k+1]Binomial[n+1,k],{k,n-1}],{n,2,20}] (* Harvey P. Dale, May 08 2016 *)
  • PARI
    a(n) = sum(k=1, n-1, binomial(n-1,k-1)*binomial(n,k+1)*binomial(n+1,k)); \\ Michel Marcus, Jan 09 2021

Formula

For n >= 2, a(n) = Sum_{k = 1..n-1} C(n-1,k-1)*C(n,k+1)*C(n+1,k), where C(n,k) = binomial(n,k).
a(n) = (1/(n+2)) * ((7*n^2-7*n-2)*a(n-1)/(n-2) + 8*n*a(n-2)) for n > 3. - Seiichi Manyama, Jan 09 2021