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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A125102 Triangle read by rows: T(n,k)=(k+1)binomial(n,k) + [3-(-1)^k]binomial(n,k+1)/2 (0<=k<=n). 0
1, 2, 2, 3, 6, 3, 4, 12, 10, 4, 5, 20, 22, 18, 5, 6, 30, 40, 50, 26, 6, 7, 42, 65, 110, 81, 38, 7, 8, 56, 98, 210, 196, 140, 50, 8, 9, 72, 140, 364, 406, 392, 204, 66, 9, 10, 90, 192, 588, 756, 924, 624, 306, 82, 10, 11, 110, 255, 900, 1302, 1932, 1590, 1050, 415, 102, 11, 12 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

Binomial transform of the bidiagonal matrix with (1,2,3...) in the main diagonal and (1,2,1,2,1,2...) in the subdiagonal. Sum of terms in row n = (n+5)*2^(n-1)-2 for n>=1.

EXAMPLE

First few rows of the triangle are:

1;

2, 2;

3, 6, 3;

4, 12, 10, 4;

5, 20, 22, 18, 5;

6, 30, 40, 50, 26, 6;

7, 42, 65, 110, 81, 38, 7;

...

MAPLE

T:=(n, k)->(k+1)*binomial(n, k)+(3-(-1)^k)*binomial(n, k+1)/2: for n from 0 to 11 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form

CROSSREFS

Sequence in context: A051173 A128228 A190098 * A003506 A047662 A183474

Adjacent sequences:  A125099 A125100 A125101 * A125103 A125104 A125105

KEYWORD

nonn,tabl

AUTHOR

Gary W. Adamson (qntmpkt(AT)yahoo.com), Nov 20 2006

EXTENSIONS

Edited by N. J. A. Sloane (njas(AT)research.att.com), Nov 29 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 17 16:49 EST 2012. Contains 206058 sequences.