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.

A156742 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 = 9, read by rows.

This page as a plain text file.
%I A156742 #18 Sep 04 2024 21:58:32
%S A156742 1,1,1,1,231,1,1,10626,10626,1,1,230230,10590580,230230,1,1,3108105,
%T A156742 3097744650,3097744650,3108105,1,1,30045015,404255676825,
%U A156742 8758872997875,404255676825,30045015,1,1,225792840,29367745734600,8590065627370500,8590065627370500,29367745734600,225792840,1
%N A156742 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 = 9, read by rows.
%H A156742 G. C. Greubel, <a href="/A156742/b156742.txt">Rows n = 0..30 of the triangle, flattened</a>
%F A156742 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 = 9.
%e A156742 Triangle begins as:
%e A156742   1;
%e A156742   1,        1;
%e A156742   1,      231,            1;
%e A156742   1,    10626,        10626,             1;
%e A156742   1,   230230,     10590580,        230230,            1;
%e A156742   1,  3108105,   3097744650,    3097744650,      3108105,        1;
%e A156742   1, 30045015, 404255676825, 8758872997875, 404255676825, 30045015, 1;
%t A156742 T[n_, k_, m_]:= Round[Product[Binomial[2*(n+j), 2*(k+j)]/Binomial[2*(n-k+j), 2*j], {j,0,m}]];
%t A156742 Table[T[n, k, 9], {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, Jun 19 2021 *)
%o A156742 (Magma)
%o A156742 A156742:= func< n,k | Round( (&*[Binomial(2*(n+j), 2*(k+j))/Binomial(2*(n-k+j), 2*j): j in [0..9]]) ) >;
%o A156742 [A156742(n,k): k in [0..n], n in [0..12]]; // _G. C. Greubel_, Jun 19 2021
%o A156742 (Sage)
%o A156742 def A156742(n, k): return round( product( binomial(2*(n+j), 2*(k+j))/binomial(2*(n-k+j), 2*j) for j in (0..9)) )
%o A156742 flatten([[A156742(n,k) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, Jun 19 2021
%Y A156742 Cf. A086645 (m=0), A156739 (m=6), A156740 (m=7), A156741 (m=8), this sequence (m=9).
%K A156742 nonn,tabl
%O A156742 0,5
%A A156742 _Roger L. Bagula_, Feb 14 2009
%E A156742 Definition corrected to give integral terms and edited by _G. C. Greubel_, Jun 19 2021