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.

A126447 Column 1 of triangle A126445; a(n) = C( C(n+3,3) - 1, n).

Original entry on oeis.org

1, 3, 36, 969, 46376, 3478761, 377447148, 56017460733, 10912535409348, 2703343379981793, 830496702831140346, 310006778438284515093, 138247735223480364826280, 72613463426660610635960445
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, Apr 22 2022 *)
  • PARI
    a(n)=binomial((n+1)*(n+2)*(n+3)/3!-1, n)