login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A109692 Triangle of coefficients in expansion of (1+x)*(1+3x)*(1+5x)*(1+7x)*...*(1+(2n-1)x). 9

%I #39 Jul 14 2023 18:33:21

%S 1,1,1,1,4,3,1,9,23,15,1,16,86,176,105,1,25,230,950,1689,945,1,36,505,

%T 3480,12139,19524,10395,1,49,973,10045,57379,177331,264207,135135,1,

%U 64,1708,24640,208054,1038016,2924172,4098240,2027025

%N Triangle of coefficients in expansion of (1+x)*(1+3x)*(1+5x)*(1+7x)*...*(1+(2n-1)x).

%C Triangle T(n,k), 0 <= k <= n, read by rows, given by [1, 0, 1, 0, 1, 0, 1, 0, 1, ...] DELTA [1, 2, 3, 4, 5, 6, 7, 8, 9, ...] where DELTA is the operator defined in A084938.

%C T(n,k), 0 <= k <= n, is the number of elements in the Coxeter group B_n with absolute length k. - _Jose Bastidas_, Jul 14 2023

%H Seiichi Manyama, <a href="/A109692/b109692.txt">Rows n = 0..139, flattened</a>

%F T(n,m) = T(n-1,m) + (2*n-1)*T(n-1,m-1) with T(n,n) = (2*n-1)!! and T(n,0) = 1. - _Johannes W. Meijer_, Jun 08 2009

%e Triangle T(n,k) begins:

%e 1;

%e 1, 1;

%e 1, 4, 3;

%e 1, 9, 23, 15;

%e 1, 16, 86, 176, 105;

%e 1, 25, 230, 950, 1689, 945;

%e 1, 36, 505, 3480, 12139, 19524, 10395;

%e ...

%p nmax:=8; mmax:=nmax: for n from 0 to nmax do a(n, n) := doublefactorial(2*n-1) od: for n from 0 to nmax do a(n, 0):=1 od: for n from 2 to nmax do for m from 1 to n-1 do a(n, m) := a(n-1,m) + (2*n-1)*a(n-1,m-1) od; od: seq(seq(a(n, m), m=0..n), n=0..nmax); # _Johannes W. Meijer_, Jun 08 2009, revised Nov 25 2012

%Y Cf. A039758 (signed version). A028338 transposed.

%Y Diagonals: A000012, A000290, A024196, A024197, A024198; A001147, A004041, A028339, A028340, A028341.

%Y Row sums: A000165.

%Y Central terms: A293318.

%Y Cf. A161198 (transposed scaled triangle version).

%K nonn,tabl

%O 0,5

%A _Philippe Deléham_, Aug 08 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 06:58 EDT 2024. Contains 371906 sequences. (Running on oeis4.)