login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A110770 Triangle read by rows: T(n,k)=binom(t(n)-t(k-1),k), where t(j)=j(j+1)/2; 1<=k<=n. 1
1, 3, 1, 6, 10, 1, 10, 36, 35, 1, 15, 91, 220, 126, 1, 21, 190, 816, 1365, 462, 1, 28, 351, 2300, 7315, 8568, 1716, 1, 36, 595, 5456, 27405, 65780, 54264, 6435, 1, 45, 946, 11480, 82251, 324632, 593775, 346104, 24310, 1, 55, 1431, 22100, 211876, 1221759 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

T(n,1)=t(n)=n(n+1)/2=A000217(n); T(n,n)=1 - Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 09 2006

EXAMPLE

Triangle starts:

1;

3,1;

6,10,1;

10,36,35,1;

15,91,220,126,1;

MAPLE

t:=n->n*(n+1)/2: T:=proc(n, k) if k<=n then binomial(t(n)-t(k-1), k) else 0 fi end: for n from 1 to 10 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form - Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 09 2006

CROSSREFS

Cf. A110768, A110769, A110771.

Cf. A000217.

Sequence in context: A095066 A169955 A084536 * A106855 A064282 A087644

Adjacent sequences:  A110767 A110768 A110769 * A110771 A110772 A110773

KEYWORD

easy,tabl,nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Aug 12 2005

EXTENSIONS

More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 09 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 20:14 EST 2012. Contains 205962 sequences.