login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A107872
Column 1 of triangle A107870; a(n) = C(n*(n+1)/2 + n+2, n).
3
1, 4, 21, 165, 1820, 26334, 475020, 10295472, 260932815, 7575968400, 247994680648, 9036996468045, 362827605867363, 15913388077274800, 757000487505568680, 38819452599736372800, 2134712294190092847615
OFFSET
0,2
LINKS
MAPLE
A107872:=n->binomial(n*(n+1)/2+n+2, n): seq(A107872(n), n=0..20); # Wesley Ivan Hurt, Aug 09 2014
MATHEMATICA
Table[Binomial[(n(n+1))/2+n+2, n], {n, 0, 20}] (* Harvey P. Dale, Aug 09 2014 *)
PROG
(PARI) a(n)=binomial(n*(n+1)/2+n+2, n)
(Magma) [Binomial((n^2+3*n+4) div 2, n): n in [0..20]] // Vincenzo Librandi, Aug 09 2014
CROSSREFS
Sequence in context: A366184 A179496 A339233 * A008858 A217484 A078670
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 04 2005
STATUS
approved