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!)
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. 2
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 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Main diagonal is A102321, which is column 0 of triangle A102320.
LINKS
EXAMPLE
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],...
PROG
(PARI) T(n, k)=if(n<k|k<0, 0, if(n==0|k==0, 1, T(n, k-1)+(2*k+1)*T(n-1, k)))
CROSSREFS
Sequence in context: A106026 A096078 A140313 * A145902 A124028 A123966
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Jan 05 2005
STATUS
approved

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 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)