login

Revision History for A203301

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

Showing all changes.
Self-generating triangle based on symmetric functions.
(history; published version)
#6 by N. J. A. Sloane at Sun Dec 04 19:46:26 EST 2016
MATHEMATICA

(* _Peter J. C. Moses, _, Dec 30 2011 *)

Discussion
Sun Dec 04
19:46
OEIS Server: https://oeis.org/edit/global/2576
#5 by Russ Cox at Fri Mar 30 18:58:05 EDT 2012
AUTHOR

_Clark Kimberling (ck6(AT)evansville.edu), _, Dec 31 2011

Discussion
Fri Mar 30
18:58
OEIS Server: https://oeis.org/edit/global/285
#4 by T. D. Noe at Tue Jan 03 19:05:39 EST 2012
STATUS

proposed

approved

#3 by Clark Kimberling at Tue Jan 03 10:40:57 EST 2012
STATUS

editing

proposed

#2 by Clark Kimberling at Sat Dec 31 14:28:58 EST 2011
NAME

allocated for Clark KimberlingSelf-generating triangle based on symmetric functions.

DATA

2, 1, 2, 1, 3, 2, 1, 6, 11, 6, 1, 24, 191, 564, 396, 1, 1176, 435503, 52853928, 1076228496, 1023808896, 1, 2153328000, 1213787658541781999, 58766849935745220643571376, 25431652043775702966453113185344, 29851714119640536870115136698893312

OFFSET

1,1

COMMENTS

Let row n+1 be (c0, c1, c2,...,cn). Then

c0*x^n + c1*x^(n-1) +...+ cn=(x+b0)(x+b1)...(x+bm),

where (b0,b1,b2,...,bm) is row n.

FORMULA

row n+1 : f(0,r), f(1,r),...f(n,r), where f(k,r)=(k-th elementary symmetric function), r=(row n).

EXAMPLE

First five rows:

2

1....2

1....3......2

1....6......11......6

1....24....191....564....396

The factorization property is illustrated by

x^2 + 3x + 2 -> (x+1)(x+3)(x+2) = x^3 + 6x^2 + 11x + 6.

MATHEMATICA

s =.; s[1] = {2};

Prepend[Table[s[z] = Table[SymmetricPolynomial

[k, s[z - 1]], {k, 0, z - 1}], {z, 2, 7}], s[1]]

% // TableForm (* A203301 triangle *)

%% // Flatten (* A203301 sequence *)

(* Peter Moses, Dec 30 2011 *)

CROSSREFS

Cf. A203300.

KEYWORD

allocated

nonn,tabl

AUTHOR

Clark Kimberling (ck6(AT)evansville.edu), Dec 31 2011

STATUS

approved

editing

#1 by Clark Kimberling at Sat Dec 31 11:00:07 EST 2011
NAME

allocated for Clark Kimberling

KEYWORD

allocated

STATUS

approved