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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A156740 Triangle T(n, k, m) = round( Product_{j=0..m} binomial(2*(n+j), 2*(k+j))/binomial( 2*(n-k+j), 2*j) ), where m = 7, read by rows. 5

%I #16 Sep 08 2022 08:45:41

%S 1,1,1,1,153,1,1,4845,4845,1,1,74613,2362745,74613,1,1,735471,

%T 358664691,358664691,735471,1,1,5311735,25533510145,393216056233,

%U 25533510145,5311735,1,1,30421755,1056158828725,160324910200455,160324910200455,1056158828725,30421755,1

%N Triangle T(n, k, m) = round( Product_{j=0..m} binomial(2*(n+j), 2*(k+j))/binomial( 2*(n-k+j), 2*j) ), where m = 7, read by rows.

%H G. C. Greubel, <a href="/A156740/b156740.txt">Rows n = 0..30 of the triangle, flattened</a>

%F T(n, k, m) = round( Product_{j=0..m} b(n+j, k+j)/b(n-k+j, j) ), where b(n, k) = binomial(2*n, 2*k) and m = 7.

%F Sum_{k=0..n} T(n, k, 7) = A151614(n).

%e Triangle begins as:

%e 1;

%e 1, 1;

%e 1, 153, 1;

%e 1, 4845, 4845, 1;

%e 1, 74613, 2362745, 74613, 1;

%e 1, 735471, 358664691, 358664691, 735471, 1;

%e 1, 5311735, 25533510145, 393216056233, 25533510145, 5311735, 1;

%t b[n_, k_]:= Binomial[2*n, 2*k];

%t T[n_, k_, m_]:= Round[Product[b[n+j, k+j]/b[n-k+j, j], {j,0,m}]];

%t Table[T[n, k, 7], {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, Jun 19 2021 *)

%o (Magma)

%o A156740:= func< n,k | Round( (&*[Binomial(2*(n+j), 2*(k+j))/Binomial(2*(n-k+j), 2*j): j in [0..7]]) ) >;

%o [A156740(n,k): k in [0..n], n in [0..12]]; # _G. C. Greubel_, Jun 19 2021

%o (Sage)

%o def A156740(n, k): return round( product( binomial(2*(n+j), 2*(k+j))/binomial(2*(n-k+j), 2*j) for j in (0..7)) )

%o flatten([[A156740(n,k) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, Jun 19 2021

%Y Cf. A086645 (m=0), A156739 (m=6), this sequence (m=7), A156741 (m=8), A156742 (m=9).

%Y Cf. A151614 (row sums).

%K nonn,tabl

%O 0,5

%A _Roger L. Bagula_, Feb 14 2009

%E Definition corrected to give integral terms and edited by _G. C. Greubel_, Jun 19 2021

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)