login

Revision History for A249756

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Triangular array of coefficients of polynomials p(n,x) = (x + 1)*p(n-1,x) + n*x, p(0,x) = 1.
(history; published version)
#5 by N. J. A. Sloane at Fri Nov 14 21:13:05 EST 2014
STATUS

editing

approved

#4 by N. J. A. Sloane at Fri Nov 14 21:12:39 EST 2014
COMMENTS

(sum Sum of numbers in row n) = A079583(n+1) for n >= 0.

CROSSREFS
STATUS

proposed

editing

Discussion
Fri Nov 14
21:13
N. J. A. Sloane: "Sum" if at start of sentence. Added missing cross-reference.
#3 by Clark Kimberling at Fri Nov 14 09:09:21 EST 2014
STATUS

editing

proposed

#2 by Clark Kimberling at Fri Nov 07 18:11:45 EST 2014
NAME

allocated for Clark KimberlingTriangular array of coefficients of polynomials p(n,x) = (x + 1)*p(n-1,x) + n*x, p(0,x) = 1.

DATA

1, 1, 2, 1, 5, 2, 1, 9, 7, 2, 1, 14, 16, 9, 2, 1, 20, 30, 25, 11, 2, 1, 27, 50, 55, 36, 13, 2, 1, 35, 77, 105, 91, 49, 15, 2, 1, 44, 112, 182, 196, 140, 64, 17, 2, 1, 54, 156, 294, 378, 336, 204, 81, 19, 2, 1, 65, 210, 450, 672, 714, 540, 285, 100, 21, 2, 1

OFFSET

0,3

COMMENTS

(sum of numbers in row n) = A079583(n+1) for n >= 0.

LINKS

Clark Kimberling, <a href="/A249756/b249756.txt">Rows n = 0..100, flattened</a>

EXAMPLE

p(0,x) = 1

p(1,x) = 1 + 2*x

p(2,x) = 1 + 5*x + 2*x^2

First 6 rows:

1

1 2

1 5 2

1 9 7 2

1 14 16 9 2

1 20 30 25 11 2

MATHEMATICA

z = 14; p[n_, x_] := (x + 1) p[n - 1, x] + n*x; p[0, x_] = 1;

t = Table[Factor[p[n, x]], {n, 0, z}]

TableForm[Rest[Table[CoefficientList[t[[n]], x], {n, 0, z}]]] (* A249756 array *)

Flatten[CoefficientList[t, x]] (* A249756 sequence *)

CROSSREFS

Cf. A249755.

KEYWORD

allocated

nonn,tabl,easy

AUTHOR

Clark Kimberling, Nov 07 2014

STATUS

approved

editing

#1 by Clark Kimberling at Tue Nov 04 20:58:25 EST 2014
NAME

allocated for Clark Kimberling

KEYWORD

allocated

STATUS

approved