cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A114176 Triangle, read by rows, where the g.f. of column n, C_n(x), equals the g.f. of row n, R_n(x), divided by (1-x)^(n+1)*(1-x^2)^n, for n>=0; e.g., C_n(x) = R_n(x)/(1-x)^(n+1)/(1-x^2)^n.

Original entry on oeis.org

1, 1, 1, 1, 3, 1, 1, 6, 6, 1, 1, 10, 18, 10, 1, 1, 15, 43, 43, 15, 1, 1, 21, 86, 135, 87, 21, 1, 1, 28, 156, 345, 345, 159, 28, 1, 1, 36, 260, 771, 1083, 777, 267, 36, 1, 1, 45, 410, 1557, 2901, 2927, 1577, 423, 45, 1, 1, 55, 615, 2913, 6909, 9219, 7001, 2973, 637, 55, 1
Offset: 0

Views

Author

Paul D. Hanna, Nov 15 2005

Keywords

Examples

			Triangle begins:
1;
1,1;
1,3,1;
1,6,6,1;
1,10,18,10,1;
1,15,43,43,15,1;
1,21,86,135,87,21,1;
1,28,156,345,345,159,28,1;
1,36,260,771,1083,777,267,36,1;
1,45,410,1557,2901,2927,1577,423,45,1;
1,55,615,2913,6909,9219,7001,2973,637,55,1; ...
where g.f. for columns is formed from g.f. of rows:
column 2: (1 + 3*x + 1*x^2)/(1-x)^3/(1-x^2)^2 = 1 + 6*x + 18*x^2 + 43*x^3 + 86*x^4 + 156*x^5 +...
column 3: (1 + 6*x + 6*x^2 + 1*x^3)/(1-x)^4/(1-x^2)^3 = 1 + 10*x + 43*x^2 + 135*x^3 + 345*x^4 + 771*x^5 +...
column 4: (1 + 10*x + 18*x^2 + 10*x^3 + 1*x^4)/(1-x)^5/(1-x^2)^4 = 1 + 15*x + 87*x^2 + 345*x^3 + 1083*x^4 + 2901*x^5 +...
		

Crossrefs

Cf. A114177 (row sums), A114174 (central terms), A114175 (row sums-square).

Programs

  • PARI
    T(n,k)=if(n
    				
  • PARI
    {T(n,k)=if(n==k,1,sum(j=0,k,T(k,j)*sum(i=0,n-j-k, (-1)^(n-i-j-k)*binomial(2*k+i,i)*binomial(n-i-j-1,n-i-j-k))))} \\ Paul D. Hanna, Jun 21 2006

Formula

T(n,k) = Sum_{j=0..k} T(k,j)*Sum_{i=0..n-j-k} (-1)^(n-i-j-k)*C(2k+i,i)*C(n-i-j-1,n-i-j-k) for n>k with T(n,n)=1 for n>=0. - Paul D. Hanna, Jun 21 2006

A114178 Central terms of triangle A114176 found in even-indexed rows.

Original entry on oeis.org

1, 3, 18, 135, 1083, 9219, 80631, 724080, 6601639, 61065270, 570430258, 5376309654, 51020229343, 487127706521, 4674459993450, 45056351087502, 435965482847738, 4232871507349381, 41222355832803426, 402540756184423291
Offset: 0

Views

Author

Paul D. Hanna, Nov 15 2005

Keywords

Crossrefs

Cf. A114176, A114177 (row sums), A114179 (row sums-square).

A114179 Sums of squared terms in rows of triangle A114176.

Original entry on oeis.org

1, 2, 11, 74, 526, 4150, 34074, 289237, 2512542, 22245389, 199852587, 1817096872, 16685674922, 154527136727, 1441556793983, 13533353351654, 127755258777551, 1211901967571904, 11545994448606595, 110425125151843023
Offset: 0

Views

Author

Paul D. Hanna, Nov 15 2005

Keywords

Crossrefs

Cf. A114176, A114177 (row sums), A114178 (central terms).
Showing 1-3 of 3 results.