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.

A126449 Row sums of triangle A126445; a(n) = Sum_{k=0..n} C( C(n+2,3) - C(k+2,3), n-k).

Original entry on oeis.org

1, 2, 10, 163, 5945, 375819, 36233754, 4932046435, 899372990826, 211481102358562, 62283285977509563, 22451501854089680715, 9722649026348549481236, 4980474318644453218716459
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Crossrefs

Programs

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