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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141686 Triangle T(n,m) = A008292(n,m)*binomial(n-1,m-1) read by rows. 2
1, 1, 1, 1, 8, 1, 1, 33, 33, 1, 1, 104, 396, 104, 1, 1, 285, 3020, 3020, 285, 1, 1, 720, 17865, 48320, 17865, 720, 1, 1, 1729, 90153, 546665, 546665, 90153, 1729, 1, 1, 4016, 409024, 4941104, 10933300, 4941104, 409024, 4016, 1, 1, 9117, 1722240, 38236128 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,5

COMMENTS

Row sums are A104098(n-1). [Jun 30 2010]

FORMULA

T(n,m)=T(n,n+1-m).

EXAMPLE

1;

1, 1;

1, 8, 1;

1, 33, 33, 1;

1, 104, 396, 104, 1;

1, 285, 3020, 3020, 285, 1;

1, 720, 17865, 48320, 17865, 720, 1;

1, 1729, 90153, 546665, 546665, 90153, 1729, 1;

1, 4016, 409024, 4941104, 10933300, 4941104, 409024, 4016, 1;

1, 9117, 1722240, 38236128, 165104604, 165104604, 38236128, 1722240, 9117, 1;

MATHEMATICA

(*Recurrence*) A[n_, 1] := 1; A[n_, n_] := 1; A[n_, k_] := (n - k + 1)A[n - 1, k - 1] + k A[n - 1, k]; Table[Table[A[n, k]*Binomial[n - 1, k - 1], {k, 1, n}], {n, 1, 10}]; Flatten[%]

CROSSREFS

Cf. A008292.

Sequence in context: A144439 A157208 A178347 * A185412 A157148 A154335

Adjacent sequences:  A141683 A141684 A141685 * A141687 A141688 A141689

KEYWORD

nonn,tabl

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Sep 08 2008

EXTENSIONS

keyword:tabl inserted, indices corrected by the Assoc. Eds. of the OEIS, Jun 30 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 16 21:51 EST 2012. Contains 205978 sequences.