Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A129577
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A129577 Triangle, read by rows, defined by T(n,k) = T(n-1,k) + T(n,k-1) for nk>0, where T(n,0) = T(n-1,0) + T(n-1,n-1) and T(n,n) = T(n,n-1) for n>0 with T(0,0)=1. +0
4
1, 1, 1, 2, 3, 3, 5, 8, 11, 11, 16, 24, 35, 46, 46, 62, 86, 121, 167, 213, 213, 275, 361, 482, 649, 862, 1075, 1075, 1350, 1711, 2193, 2842, 3704, 4779, 5854, 5854, 7204, 8915, 11108, 13950, 17654, 22433, 28287, 34141, 34141, 41345, 50260, 61368, 75318 (list; table; graph; listen)
OFFSET

0,4

EXAMPLE

Triangle begins:

1;

1, 1;

2, 3, 3;

5, 8, 11, 11;

16, 24, 35, 46, 46;

62, 86, 121, 167, 213, 213;

275, 361, 482, 649, 862, 1075, 1075;

1350, 1711, 2193, 2842, 3704, 4779, 5854, 5854;

7204, 8915, 11108, 13950, 17654, 22433, 28287, 34141, 34141; ...

PROGRAM

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

CROSSREFS

Cf. A129578 (column 0), A129579 (main diagonal), A129580 (row sums).

Sequence in context: A046937 A069831 A017820 this_sequence A107854 A118808 A059503

Adjacent sequences: A129574 A129575 A129576 this_sequence A129578 A129579 A129580

KEYWORD

nonn,tabl

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Apr 24 2007

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 December 1 13:27 EST 2009. Contains 167806 sequences.


AT&T Labs Research