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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157000 Triangle T(n,k) = (n/k)*binomial(n-k-1, k-1) read by rows. 1
2, 3, 4, 2, 5, 5, 6, 9, 2, 7, 14, 7, 8, 20, 16, 2, 9, 27, 30, 9, 10, 35, 50, 25, 2, 11, 44, 77, 55, 11, 12, 54, 112, 105, 36, 2, 13, 65, 156, 182, 91, 13, 14, 77, 210, 294, 196, 49, 2, 15, 90, 275, 450, 378, 140, 15, 16, 104, 352, 660, 672, 336, 64, 2, 17, 119, 442, 935, 1122, 714 (list; graph; refs; listen; history; internal format)
OFFSET

2,1

COMMENTS

Row sums are A001610(n-1).

REFERENCES

J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, pp. 199

EXAMPLE

The table starts in row n=2, column k=1 as:

2;

3;

4, 2;

5, 5;

6, 9, 2;

7, 14, 7;

8, 20, 16, 2;

9, 27, 30, 9;

10, 35, 50, 25, 2;

11, 44, 77, 55, 11;

12, 54, 112, 105, 36, 2;

MATHEMATICA

g[n_, k_] := (n/k)*Binomial[n - k - 1, k - 1];

Table[Table[g[n, k + 1], {k, 0, Floor[n/2] - 1}], {n, 12}];

Flatten[%]

PROG

(PARI) a(n, k)=n*binomial(n-k-1, k-1)/k \\ Charles R Greathouse IV, Jul 10 2011

CROSSREFS

Cf. A132460, A113279, A082985.

Sequence in context: A100798 A121701 A161759 * A026346 A120636 A117744

Adjacent sequences:  A156997 A156998 A156999 * A157001 A157002 A157003

KEYWORD

nonn,easy,tabf

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Feb 20 2009

EXTENSIONS

Offset 2, keyword:tabf, more terms by the Assoc. Eds. of the OEIS, Nov 01 2010.

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 17 22:48 EST 2012. Contains 206085 sequences.