login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A187926 Riordan matrix (1/(1-4x),(1-sqrt(1-4x))/2). 2
1, 4, 1, 16, 5, 1, 64, 22, 6, 1, 256, 93, 29, 7, 1, 1024, 386, 130, 37, 8, 1, 4096, 1586, 562, 176, 46, 9, 1, 16384, 6476, 2380, 794, 232, 56, 10, 1, 65536, 26333, 9949, 3473, 1093, 299, 67, 11, 1, 262144, 106762, 41226, 14893, 4944, 1471, 378, 79, 12, 1, 1048576, 431910, 169766, 63004, 21778, 6885, 1941, 470, 92, 13, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums are A000346.
LINKS
FORMULA
a(n,k) = sum(binomial(n+i,n)*2^(n-k-i),i=0..n-k)
Recurrence: a(n+1,k+1) = a(n,k) + a(n,k+1) + a(n,k+2) + ... + a(n,n).
EXAMPLE
Triangle begins:
1,
4,1,
16,5,1,
64,22,6,1,
256,93,29,7,1,
1024,386,130,37,8,1,
4096,1586,562,176,46,9,1,
16384,6476,2380,794,232,56,10,1,
65536,26333,9949,3473,1093,299,67,11,1
MATHEMATICA
Table[Sum[Binomial[n + i, n]2^(n - k - i), {i, 0, n - k}], {n, 0, 8}, {k, 0, 8}]//MatrixForm
PROG
(Maxima) create_list(sum(binomial(n+i, n)*2^(n-k-i), i, 0, n-k), n, 0, 10, k, 0, n);
CROSSREFS
Sequence in context: A351434 A167343 A094361 * A285281 A285267 A067425
KEYWORD
nonn,tabl,easy
AUTHOR
Emanuele Munarini, Mar 16 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)