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.

A102323 Triangle, read by rows, where T(n,k) = T(n,k-1) + (2*k+1)*T(n-1,k) for n>k>0, T(n,0)=1 and T(n,n) = T(n,n-1) for n>=0.

Original entry on oeis.org

1, 1, 1, 1, 4, 4, 1, 13, 33, 33, 1, 40, 205, 436, 436, 1, 121, 1146, 4198, 8122, 8122, 1, 364, 6094, 35480, 108578, 197920, 197920, 1, 1093, 31563, 279923, 1257125, 3434245, 6007205, 6007205, 1, 3280, 161095, 2120556, 13434681, 51211376
Offset: 0

Views

Author

Paul D. Hanna, Jan 05 2005

Keywords

Comments

Main diagonal is A102321, which is column 0 of triangle A102320.

Examples

			T(5,2) = 1146 = 1*1 + 3*40 + 5*205 = 1*T(4,0) + 3*T(4,1) + 5*T(4,2).
T(5,2) = 1146 = 121 + 5*205 = T(5,1) + (2*2+1)*T(4,2).
T(5,3) = 4198 = 1146 + 7*436 = T(5,2) + (2*3+1)*T(4,3).
Rows begin:
[1],
[1,1],
[1,4,4],
[1,13,33,33],
[1,40,205,436,436],
[1,121,1146,4198,8122,8122],
[1,364,6094,35480,108578,197920,197920],
[1,1093,31563,279923,1257125,3434245,6007205,6007205],...
		

Crossrefs

Programs

  • PARI
    T(n,k)=if(n