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.

A113125 A simple tridiagonal matrix.

This page as a plain text file.
%I A113125 #8 Oct 14 2022 17:52:45
%S A113125 1,1,2,1,2,3,0,2,3,4,0,0,3,4,5,0,0,0,4,5,6,0,0,0,0,5,6,7,0,0,0,0,0,6,
%T A113125 7,8,0,0,0,0,0,0,7,8,9,0,0,0,0,0,0,0,8,9,10,0,0,0,0,0,0,0,0,9,10,11,0,
%U A113125 0,0,0,0,0,0,0,0,10,11,12,0,0,0,0,0,0,0,0,0,0,11,12,13,0,0,0,0,0,0,0,0,0,0
%N A113125 A simple tridiagonal matrix.
%C A113125 Row sums are A008486 (coordination sequence for graphite net). Diagonal sums are A026741(n+1). Diagonals are A000027.
%F A113125 Number triangle where column k has g.f. (1+x+x^2)(k+1)x^k.
%e A113125 Triangle begins
%e A113125   1;
%e A113125   1, 2;
%e A113125   1, 2, 3;
%e A113125   0, 2, 3, 4;
%e A113125   0, 0, 3, 4, 5;
%e A113125   0, 0, 0, 4, 5, 6;
%e A113125   0, 0, 0, 0, 5, 6, 7;
%e A113125   0, 0, 0, 0, 0, 6, 7, 8;
%t A113125 Table[If[#<(n-2),0,#]&/@Range[n],{n,15}]//Flatten (* _Harvey P. Dale_, Oct 14 2022 *)
%Y A113125 Cf. A113126.
%K A113125 easy,nonn,tabl
%O A113125 0,3
%A A113125 _Paul Barry_, Oct 14 2005