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.

A081205 Staircase on Pascal's triangle.

Original entry on oeis.org

1, 3, 10, 20, 70, 126, 462, 792, 3003, 5005, 19448, 31824, 125970, 203490, 817190, 1307504, 5311735, 8436285, 34597290, 54627300, 225792840, 354817320, 1476337800, 2310789600, 9669554100, 15084504396, 63432274896, 98672427616
Offset: 0

Views

Author

Paul Barry, Mar 11 2003

Keywords

Comments

Arrange Pascal's triangle as a square array. A081204 is then a diagonal staircase on the square array. The steps are (1,3),(10,20),(70,126),(462,792),....

Crossrefs

Programs

  • Magma
    [Binomial(Ceiling((n+1)/2)+(n+1), n): n in [0..30]]; // Vincenzo Librandi Aug 07 2013
  • Mathematica
    Table[Binomial[Ceiling[(n+1)/2] + (n + 1), n], {n, 0, 30}] (* Vincenzo Librandi, Aug 07 2013 *)

Formula

a(n) = binomial(ceiling((n+1)/2)+(n+1), n).
Conjecture: 4*n*(n-1)*(n+4)*(6*n^2-9*n-1)*a(n) +6*(n-1)*(27*n^2+29*n+4)*a(n-1) -3*n*(3*n-1)*(3*n+1)*(6*n^2+3*n-4)*a(n-2)=0. - R. J. Mathar, Nov 19 2014