login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Staircase on Pascal's triangle.
3

%I #17 Sep 08 2022 08:45:09

%S 1,2,3,10,15,56,84,330,495,2002,3003,12376,18564,77520,116280,490314,

%T 735471,3124550,4686825,20030010,30045015,129024480,193536720,

%U 834451800,1251677700,5414950296,8122425444,35240152720,52860229080,229911617056

%N Staircase on Pascal's triangle.

%C Arrange Pascal's triangle as a square array. This sequence is then a diagonal staircase on the square array.

%H Vincenzo Librandi, <a href="/A081204/b081204.txt">Table of n, a(n) for n = 0..200</a>

%F a(n) = binomial(ceiling((n)/2) + n, n).

%F a(n) = Sum_{k=0..floor(n/2)} binomial(n+k-1, k). - _Paul Barry_, Jul 06 2004

%F Conjecture: 4*n*(n+1)*(6*n^2 - 15*n + 8)*a(n) + 6*n*(9*n-7)*a(n-1) - 3*(3*n-4)*(3*n-2)*(6*n^2-3*n-1)*a(n-2) = 0. - _R. J. Mathar_, Nov 07 2014

%F Conjecture: 8*n^2*(n+1)*a(n) - 12*n*(83*n^2 - 313*n + 232)*a(n-1) + 6*(-9*n^3 - 377*n + 384)*a(n-2) + 9*(3*n-5)*(83*n-64)*(3*n-7)*a(n-3) = 0. - _R. J. Mathar_, Nov 07 2014

%t Table[Binomial[Ceiling[(n)/2] + n, n], {n, 0, 30}] (* _Vincenzo Librandi_, Aug 07 2013 *)

%o (Magma) [Binomial(Ceiling((n)/2) + n, n): n in [0..30]]; // _Vincenzo Librandi_, Aug 07 2013

%Y Cf. A065942, A081181, A081205.

%K easy,nonn

%O 0,2

%A _Paul Barry_, Mar 11 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 20 02:06 EDT 2024. Contains 376015 sequences. (Running on oeis4.)