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!)
A177694 Triangle t(n,m) = p(n)/ (p(m)*p(n-m) ) read by rows, where p(n>=1) = 1, -1, 2, 10, 10, -160, -2080,.. are partial products of A106852. 0

%I #5 Mar 30 2012 17:34:41

%S 1,1,1,1,-1,1,1,-2,-2,1,1,5,10,5,1,1,1,-5,-5,1,1,1,-16,16,-40,16,-16,

%T 1,1,13,208,-104,-104,208,13,1,1,35,-455,-3640,-728,-3640,-455,35,1,1,

%U -74,2590,-16835,53872,53872,-16835,2590,-74,1,1,-31,-2294,40145,104377

%N Triangle t(n,m) = p(n)/ (p(m)*p(n-m) ) read by rows, where p(n>=1) = 1, -1, 2, 10, 10, -160, -2080,.. are partial products of A106852.

%C Row sums are: 1, 2, 1, -2, 22, -6, -38, 236, -8846, 79108, -1385636,...

%D Advanced Number Theory, Harvey Cohn, Dover Books,1963, Page 47ff

%F p(n+1) = product_{i=0..n} (-1)^i*A106852(i).

%F t(n,m) = p(n)/(p(m)*p(n-m)).

%e 1;

%e 1, 1;

%e 1, -1, 1;

%e 1, -2, -2, 1;

%e 1, 5, 10, 5, 1;

%e 1, 1, -5, -5, 1, 1;

%e 1, -16, 16, -40, 16, -16, 1;

%e 1, 13, 208, -104, -104, 208, 13, 1;

%e 1, 35, -455, -3640, -728, -3640, -455, 35, 1;

%e 1, -74, 2590, -16835, 53872, 53872, -16835, 2590, -74, 1;

%e 1, -31, -2294, 40145, 104377, -1670032, 104377, 40145, -2294, -31, 1;

%t Clear[t, n, m, c, q, w, f, a];

%t f[0, a_] := 0; f[1, a_] := 1;

%t f[n_, a_] := f[n, a] = -f[n - 1, a] - a*f[n - 2, a];

%t c[n_, a_] := If[n == 0, 1, Product[f[i, a], {i, 1, n}]];

%t w[n_, m_, q_] := c[n, q]/(c[m, q]*c[n - m, q]);

%t Table[Flatten[Table[Table[w[n, m, q], {m, 0, n}], {n, 0, 10}]], {q, 2, 12}]

%K sign,tabl

%O 0,8

%A _Roger L. Bagula_, May 11 2010

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 March 28 17:42 EDT 2024. Contains 371254 sequences. (Running on oeis4.)