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.

A172185 (9,11) Pascal triangle.

This page as a plain text file.
%I A172185 #23 Apr 28 2022 03:26:02
%S A172185 1,9,11,9,20,11,9,29,31,11,9,38,60,42,11,9,47,98,102,53,11,9,56,145,
%T A172185 200,155,64,11,9,65,201,345,355,219,75,11,9,74,266,546,700,574,294,86,
%U A172185 11,9,83,340,812,1246,1274,868,380,97,11,9,92,423,1152,2058,2520,2142,1248,477,108,11
%N A172185 (9,11) Pascal triangle.
%C A172185 Sums of NW-SE diagonals give A022114 (apart from first two terms).
%C A172185 Triangle T(n,k), read by rows, given by (9,-8,0,0,0,0,0,0,0,...) DELTA (11,-10,0,0,0,0,0,0,0,...) where DELTA is the operator defined in A084938. - _Philippe Deléham_, Oct 09 2011
%C A172185 Row n: Expansion of (9+11x)*(1+x)^(n-1), n > 0. - _Philippe Deléham_, Oct 09 2011
%H A172185 G. C. Greubel, <a href="/A172185/b172185.txt">Rows n = 0..50 of the triangle, flattened</a>
%F A172185 T(n,k) = T(n-1,k-1) + T(n-1,k) with T(0,0)=1, T(1,0)=9, T(1,1)=11. - _Philippe Deléham_, Oct 09 2011
%F A172185 G.f.: (1+8*x+10*y*x)/(1-x-y*x). - _Philippe Deléham_, Apr 13 2012
%F A172185 From _G. C. Greubel_, Apr 28 2022: (Start)
%F A172185 T(n, k) = 9*binomial(n, k) + 2*binomial(n-1, k-1) with T(0, 0) = 1.
%F A172185 Sum_{k=0..n} T(n, k) = 10*2^n - 9*[n=0]. (End)
%e A172185 Triangle begins:
%e A172185   1;
%e A172185   9, 11;
%e A172185   9, 20,  11;
%e A172185   9, 29,  31,   11;
%e A172185   9, 38,  60,   42,   11;
%e A172185   9, 47,  98,  102,   53,   11;
%e A172185   9, 56, 145,  200,  155,   64,   11;
%e A172185   9, 65, 201,  345,  355,  219,   75,   11;
%e A172185   9, 74, 266,  546,  700,  574,  294,   86,  11;
%e A172185   9, 83, 340,  812, 1246, 1274,  868,  380,  97,  11;
%e A172185   9, 92, 423, 1152, 2058, 2520, 2142, 1248, 477, 108, 11;
%t A172185 T[n_, k_]:= If[n==0, 1, (9 + 2*k/n)*Binomial[n, k]]
%t A172185 Table[T[n, k], {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, Apr 28 2022 *)
%o A172185 (SageMath)
%o A172185 def A172185(n,k): return 9*binomial(n,k) +2*binomial(n-1,k-1) -8*bool(n==0)
%o A172185 flatten([[A172185(n,k) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, Apr 28 2022
%Y A172185 Cf. A022114, A093644, A172179.
%K A172185 nonn,tabl
%O A172185 0,2
%A A172185 _Mark Dols_, Jan 28 2010
%E A172185 Corrected and extended by _Philippe Deléham_, Oct 09 2011