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.

A126456 Column 1 of triangle A126454; a(n) = C( C(n+3,3) + 1, n).

Original entry on oeis.org

1, 5, 55, 1330, 58905, 4187106, 437353560, 63140314380, 12049276177620, 2938311614386005, 891655291709643461, 329600203128234828790, 145830232567505064233200, 76102715775896720790887700
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Binomial[Binomial[n+3,3]+1,n],{n,0,20}] (* Harvey P. Dale, Feb 03 2015 *)
  • PARI
    a(n)=binomial((n+1)*(n+2)*(n+3)/3!+1, n)