Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A102316
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A102316 Triangle, read by rows, where T(n,k) = T(n,k-1) + (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. +0
5
1, 1, 1, 1, 3, 3, 1, 7, 16, 16, 1, 15, 63, 127, 127, 1, 31, 220, 728, 1363, 1363, 1, 63, 723, 3635, 10450, 18628, 18628, 1, 127, 2296, 16836, 69086, 180854, 311250, 311250, 1, 255, 7143, 74487, 419917, 1505041, 3683791, 6173791, 6173791, 1, 511, 21940 (list; table; graph; listen)
OFFSET

0,5

COMMENT

Main diagonal is A082161 (with offset). Row sums give A102317.

T(n,k) = number of column-marked subdiagonal paths of steps east (1,0) and north (0,1) from the origin to (n,k). Subdiagonal means that the path never rises above the diagonal line y=x and column-marked means that for 1 <= i <= n, one unit square directly below the i-th east step and above the line y=-1 is marked. - David Callan (callan(AT)stat.wisc.edu), Feb 04 2006

FORMULA

T(n, k) = Sum_{j=0..k} (j+1)*T(n-1, j) for n>k>0, T(n, 0)=1 for n>=0. T(n, n) = A082161(n) for n>0; A082161(n+1) = Sum_{k=0..n} (k+1)*T(n, k).

EXAMPLE

T(5,2) = 220 = 1*1 + 2*15 + 3*63 = 1*T(4,0) + 2*T(4,1) + 3*T(4,2).

T(5,2) = 220 = 31 + 3*63 = T(5,1) + (2+1)*T(4,2).

T(5,3) = 728 = 220 + 4*127 = T(5,2) + (3+1)*T(4,3).

Rows begin:

[1],

[1,1],

[1,3,3],

[1,7,16,16],

[1,15,63,127,127],

[1,31,220,728,1363,1363],

[1,63,723,3635,10450,18628,18628],

[1,127,2296,16836,69086,180854,311250,311250],

[1,255,7143,74487,419917,1505041,3683791,6173791,6173791],...

PROGRAM

(PARI) T(n, k)=if(n<k|k<0, 0, if(n==0|k==0, 1, T(n, k-1)+(k+1)*T(n-1, k)))

CROSSREFS

Cf. A102086, A082161, A102317.

Sequence in context: A127501 A118408 A079268 this_sequence A133709 A124040 A160332

Adjacent sequences: A102313 A102314 A102315 this_sequence A102317 A102318 A102319

KEYWORD

nonn,tabl

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Jan 04 2005

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified November 27 14:50 EST 2009. Contains 167570 sequences.


AT&T Labs Research