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.

A136521 Triangle read by rows: (1, 2, 2, 2, ...) on the main diagonal and the rest zeros.

This page as a plain text file.
%I A136521 #12 May 04 2021 02:02:25
%S A136521 1,0,2,0,0,2,0,0,0,2,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,
%T A136521 0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,
%U A136521 0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2
%N A136521 Triangle read by rows: (1, 2, 2, 2, ...) on the main diagonal and the rest zeros.
%H A136521 G. C. Greubel, <a href="/A136521/b136521.txt">Rows n = 0..25 of the triangle, flattened</a>
%F A136521 By columns, (1, 0, 0, 0, ...) in leftmost column; all others are (2, 0, 0, 0, ...).
%F A136521 By rows, row 1 = 1, others = (n-1) zeros followed by "2".
%F A136521 A007318(n,k) * T(n,k) = A124927(n,k).
%F A136521 T(n,k) * A007318(n,k) = A134058(n,k).
%F A136521 A001263(n,k) * T(n,k) = A136522(n,k).
%F A136521 From _G. C. Greubel_, May 03 2021: (Start)
%F A136521 T(n, k) = 2*[k=n] - [n=0].
%F A136521 Sum_{k=0..n} T(n, k) = A040000(n). (End)
%e A136521 First few rows of the triangle are:
%e A136521   1;
%e A136521   0, 2;
%e A136521   0, 0, 2;
%e A136521   0, 0, 0, 2;
%e A136521   0, 0, 0, 0, 2;
%e A136521   ...
%t A136521 Table[2*Boole[k==n] -Boole[n==0], {n,0,12}, {k,0,n}]//Flatten (* _G. C. Greubel_, May 03 2021 *)
%o A136521 (Sage) flatten([[2*bool(k==n) -bool(n==0) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, May 03 2021
%Y A136521 Cf. A001263, A007318, A040000, A124927, A134058, A136522.
%K A136521 nonn,tabl,less,easy
%O A136521 0,3
%A A136521 _Gary W. Adamson_, Jan 02 2008
%E A136521 More terms added by _G. C. Greubel_, May 03 2021