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.

A373164 Triangle read by rows: the exponential almost-Riordan array ( 1 | 2 - exp(x), x ).

This page as a plain text file.
%I A373164 #8 May 27 2024 15:48:10
%S A373164 1,0,1,0,-1,1,0,-1,-2,1,0,-1,-3,-3,1,0,-1,-4,-6,-4,1,0,-1,-5,-10,-10,
%T A373164 -5,1,0,-1,-6,-15,-20,-15,-6,1,0,-1,-7,-21,-35,-35,-21,-7,1,0,-1,-8,
%U A373164 -28,-56,-70,-56,-28,-8,1,0,-1,-9,-36,-84,-126,-126,-84,-36,-9,1
%N A373164 Triangle read by rows: the exponential almost-Riordan array ( 1 | 2 - exp(x), x ).
%H A373164 Y. Alp and E. G. Kocer, <a href="https://doi.org/10.1007/s00025-024-02193-5">Exponential Almost-Riordan Arrays</a>, Results Math 79, 173 (2024). See page 8.
%F A373164 T(n,0) = A000007(n); T(n,k) = (n-1)!/(k-1)! * [x^(n-1)] (2-exp(x))*x^(k-1).
%e A373164 The triangle begins:
%e A373164   1;
%e A373164   0,  1;
%e A373164   0, -1,  1;
%e A373164   0, -1, -2,   1;
%e A373164   0, -1, -3,  -3,   1;
%e A373164   0, -1, -4,  -6,  -4,   1;
%e A373164   0, -1, -5, -10, -10,  -5,   1;
%e A373164   0, -1, -6, -15, -20, -15,  -6,  1;
%e A373164   0, -1, -7, -21, -35, -35, -21, -7, 1;
%e A373164   ...
%t A373164 T[n_,0]:=KroneckerDelta[n,0]; T[n_,k_]:=(n-1)!/(k-1)!SeriesCoefficient[(2-Exp[x])x^(k-1),{x,0,n-1}]; Table[T[n,k],{n,0,10},{k,0,n}]//Flatten
%Y A373164 Cf. A000012 (right diagonal), A024000 (subdiagonal), A122958 (row sums), A153881 (k=1).
%Y A373164 Triangle A154926 with 1st column A000007.
%K A373164 sign,tabl
%O A373164 0,9
%A A373164 _Stefano Spezia_, May 26 2024