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.

A173503 Triangle T(n, k, q) = c(n, q)/(c(k, q)*c(n-k, q)) where c(n,q) = Product_{j=1..n} (q^j -1)^(n-j) and q = 2, read by rows.

This page as a plain text file.
%I A173503 #6 Apr 26 2021 01:57:24
%S A173503 1,1,1,1,1,1,1,3,3,1,1,21,63,21,1,1,315,6615,6615,315,1,1,9765,
%T A173503 3075975,21531825,3075975,9765,1,1,615195,6007379175,630774813375,
%U A173503 630774813375,6007379175,615195,1,1,78129765,48065040779175,156451707736214625,2346775616043219375,156451707736214625,48065040779175,78129765,1
%N A173503 Triangle T(n, k, q) = c(n, q)/(c(k, q)*c(n-k, q)) where c(n,q) = Product_{j=1..n} (q^j -1)^(n-j) and q = 2, read by rows.
%H A173503 G. C. Greubel, <a href="/A173503/b173503.txt">Rows n = 0..29 of the triangle, flattened</a>
%F A173503 T(n, k, q) = c(n, q)/(c(k, q)*c(n-k, q)) where c(n,q) = Product_{j=1..n} (q^j -1)^(n-j) and q = 2.
%e A173503 The triangle begins as:
%e A173503   1;
%e A173503   1,      1;
%e A173503   1,      1,          1;
%e A173503   1,      3,          3,            1;
%e A173503   1,     21,         63,           21,            1;
%e A173503   1,    315,       6615,         6615,          315,          1;
%e A173503   1,   9765,    3075975,     21531825,      3075975,       9765,      1;
%e A173503   1, 615195, 6007379175, 630774813375, 630774813375, 6007379175, 615195, 1;
%t A173503 c[n_, q_]:= Product[(q^m-1)^(n-m), {m,1,n}];
%t A173503 T[n_, k_, q_]:= c[n, q]/(c[k, q]*c[n-k, q]);
%t A173503 Table[T[n, k, 2], {n,0,10}, {k,0,n}]//Flatten (* modified by _G. C. Greubel_, Apr 25 2021 *)
%o A173503 (Sage)
%o A173503 @CachedFunction
%o A173503 def c(n,q): return product( (q^j -1)^(n-j) for j in (1..n))
%o A173503 def T(n,k,q): return c(n,q)/(c(k,q)*c(n-k,q))
%o A173503 flatten([[T(n,k,2) for k in (0..n)] for n in (0..10)]) # _G. C. Greubel_, Apr 25 2021
%Y A173503 Cf. A173504, A173505.
%K A173503 nonn,tabl,less
%O A173503 0,8
%A A173503 _Roger L. Bagula_, Feb 20 2010
%E A173503 Edited by _G. C. Greubel_, Apr 25 2021