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.

A369738 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. exp(1 - (1+x)^k).

This page as a plain text file.
%I A369738 #27 Jan 31 2024 08:05:59
%S A369738 1,1,0,1,-1,0,1,-2,1,0,1,-3,2,-1,0,1,-4,3,4,1,0,1,-5,4,21,-20,-1,0,1,
%T A369738 -6,5,56,-63,8,1,0,1,-7,6,115,-104,-423,184,-1,0,1,-8,7,204,-95,-2464,
%U A369738 1899,-464,1,0,1,-9,8,329,36,-8245,1696,15201,-1648,-1,0
%N A369738 Square array T(n,k), n >= 0, k >= 0, read by antidiagonals, where column k is the expansion of e.g.f. exp(1 - (1+x)^k).
%F A369738 T(0,k) = 1; T(n,k) = -k * (n-1)! * Sum_{j=1..min(k,n)} binomial(k-1,j-1) * T(n-j,k)/(n-j)!.
%F A369738 T(n,k) = Sum_{j=0..n} k^j * Stirling1(n,j) * A000587(j).
%e A369738 Square array T(n,k) begins:
%e A369738   1,  1,   1,    1,     1,      1,       1, ...
%e A369738   0, -1,  -2,   -3,    -4,     -5,      -6, ...
%e A369738   0,  1,   2,    3,     4,      5,       6, ...
%e A369738   0, -1,   4,   21,    56,    115,     204, ...
%e A369738   0,  1, -20,  -63,  -104,    -95,      36, ...
%e A369738   0, -1,   8, -423, -2464,  -8245,  -21096, ...
%e A369738   0,  1, 184, 1899,  1696, -21275, -124344, ...
%o A369738 (PARI) a000587(n) = sum(k=0, n, (-1)^k*stirling(n, k, 2));
%o A369738 T(n, k) = sum(j=0, n, k^j*stirling(n, j, 1)*a000587(j));
%Y A369738 Columns k=0..5 give A000007, A033999, (-1)^n * A062267(n), A369751, A369752, A369753.
%Y A369738 Main diagonal gives A369754.
%Y A369738 Cf. A000587, A294042.
%K A369738 sign,tabl
%O A369738 0,8
%A A369738 _Seiichi Manyama_, Jan 30 2024