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.

A123361 Triangle read by rows: T(n,k) = coefficient of x^k in the polynomial p[n,x] defined by p[0,x]=1, p[1,x]=1+x and p[n,x]=(1+x)(2-x)(3-x)...(n-x) for n >= 2 (0 <= k <= n).

This page as a plain text file.
%I A123361 #15 Oct 13 2017 05:17:49
%S A123361 1,1,1,2,1,-1,6,1,-4,1,24,-2,-17,8,-1,120,-34,-83,57,-13,1,720,-324,
%T A123361 -464,425,-135,19,-1,5040,-2988,-2924,3439,-1370,268,-26,1,40320,
%U A123361 -28944,-20404,30436,-14399,3514,-476,34,-1,362880,-300816,-154692,294328,-160027,46025,-7798,782,-43,1
%N A123361 Triangle read by rows: T(n,k) = coefficient of x^k in the polynomial p[n,x] defined by p[0,x]=1, p[1,x]=1+x and p[n,x]=(1+x)(2-x)(3-x)...(n-x) for n >= 2 (0 <= k <= n).
%C A123361 Changing the initial conditions in the recursion produces a different triangular sequence. The result here is a variation of Stirling's numbers of the first kind. The Chang and Sederberg version of this recursion produces an even function in sections.
%D A123361 Chang and Sederberg, Over and Over Again, MAA, 1997, page 209 (Moving Averages).
%H A123361 G. C. Greubel, <a href="/A123361/b123361.txt">Table of n, a(n) for the first 100 rows, flattened</a>
%e A123361 Triangle begins:
%e A123361      1;
%e A123361      1,     1;
%e A123361      2,     1,    -1;
%e A123361      6,     1,    -4,     1;
%e A123361     24,    -2,   -17,     8,    -1;
%e A123361    120,   -34,   -83,    57,   -13,     1;
%e A123361    720,  -324,  -464,   425,  -135,    19,    -1;
%e A123361   5040, -2988, -2924,  3439, -1370,   268,   -26,     1;
%p A123361 p[0]:=1: p[1]:=1+x: for n from 2 to 10 do p[n]:=sort(expand((n-x)*p[n-1])) od: for n from 0 to 10 do seq(coeff(p[n],x,k),k=0..n) od; # yields sequence in triangular form
%t A123361 p[ -1, x] = 1; p[0, x] = x + 1; p[k_, x_] := p[k, x] = (-x + k + 1)*p[k - 1, x] w = Table[CoefficientList[p[n, x], x], {n, -1, 10}]; Flatten[w]
%Y A123361 Cf. A008275.
%K A123361 sign,tabl
%O A123361 0,4
%A A123361 _Roger L. Bagula_, Nov 09 2006
%E A123361 Edited by _N. J. A. Sloane_, Nov 24 2006, Jun 17 2007