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.

A260612 Triangle read by rows: T(n,k) = coefficient of x^(n-k) in Product_{m=0..n-1} (x+(-1)^m*m!), 0 <= k <= n.

Original entry on oeis.org

1, 1, 1, 1, 0, -1, 1, 2, -1, -2, 1, -4, -13, 4, 12, 1, 20, -109, -308, 108, 288, 1, -100, -2509, 12772, 37068, -12672, -34560, 1, 620, -74509, -1793708, 9232908, 26676288, -9158400, -24883200, 1, -4420, -3199309, 373731652, 9049521228, -46507180032, -134457649920, 46133452800, 125411328000
Offset: 0

Views

Author

Matthew Campbell, Aug 08 2015

Keywords

Examples

			Row 0: 1.
Row 1: (x+(-1)^(0)*0!) = x+1. Coefficients are 1 and 1.
Row 2: (x+(-1)^0*0!)*(x+(-1)^(1)*1!) = (x+1)*(x-1) = x^2-1. Coefficients are 1, 0, and -1.
Row 3: (x+(-1)^(0)*0!)*(x-(-1)^(1)*1!)*(x+(-1)^(2)*2!) = (x+1)*(x-1)*(x+2) = x^3 + 2*x^2 - x - 2. Coefficients are 1, 2, -1, and -2.
		

Crossrefs

Formula

T(n, 1) = A058006(n-1) = (-1)^(n+1)*A153229(n) for n >= 1.