login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A115068 Triangle read by rows: T(n,k) = number of elements in the Coxeter group D_n with descent set contained in {s_k}, for 0<=k<=n-1. 5
1, 2, 2, 4, 6, 3, 8, 16, 12, 4, 16, 40, 40, 20, 5, 32, 96, 120, 80, 30, 6, 64, 224, 336, 280, 140, 42, 7, 128, 512, 896, 896, 560, 224, 56, 8, 256, 1152, 2304, 2688, 2016, 1008, 336, 72, 9, 512, 2560, 5760, 7680, 6720, 4032, 1680, 480, 90, 10, 1024, 5632, 14080, 21120 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

A115068 is the fission of the polynomial sequence (p(x,n)) by the polynomial sequence ((2x+1)^n), where p(n,x)=x^n+x^(n-1)+...+x+1, n>=0.  See A193842 for the definition of fission. [From Clark Kimberling, Aug 7 2011]

REFERENCES

A. Bjorner and F. Brenti, Combinatorics of Coxeter Groups, Springer, New York, 2005.

J. E. Humphreys, Reflection Groups and Coxeter Groups, Cambridge University Press, Cambridge, 1990.

FORMULA

T(n,k)=binomial(n,k)*2^(n-k-1).

EXAMPLE

First six rows:

1

2...2

4...6....3

8...16...12...4

16..40...40...20...5

32..96...120..80...30...6

MATHEMATICA

z = 11;

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

q[n_, x_] := (2 x + 1)^n;

p1[n_, k_] := Coefficient[p[n, x], x^k];

p1[n_, 0] := p[n, x] /. x -> 0;

d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}]

h[n_] := CoefficientList[d[n, x], {x}]

TableForm[Table[Reverse[h[n]], {n, 0, z}]]

Flatten[Table[Reverse[h[n]], {n, -1, z}]]  (* A115068 *)

TableForm[Table[h[n], {n, 0, z}]]

Flatten[Table[h[n], {n, -1, z}]]   (* A193862 *)

CROSSREFS

Cf. A007318, A038207, A193862.

Sequence in context: A113463 A191674 A127718 * A051495 A073256 A166362

Adjacent sequences:  A115065 A115066 A115067 * A115069 A115070 A115071

KEYWORD

easy,nonn,tabl

AUTHOR

Elizabeth Morris (epmorris(AT)math.washington.edu), Mar 01 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 23:53 EST 2012. Contains 205860 sequences.