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!)
A185812 Riordan array ( 1/(1-x), x*A005043(x) ). 3

%I #21 Jul 15 2017 02:06:27

%S 1,1,1,1,1,1,1,2,1,1,1,3,3,1,1,1,6,5,4,1,1,1,12,12,7,5,1,1,1,27,26,19,

%T 9,6,1,1,1,63,63,43,27,11,7,1,1,1,154,153,110,63,36,13,8,1,1,1,386,

%U 386,275,169,86,46,15,9,1,1

%N Riordan array ( 1/(1-x), x*A005043(x) ).

%H G. C. Greubel, <a href="/A185812/b185812.txt">Table of n, a(n) for the first 50 rows, flattened</a>

%F R(n,k) = k*Sum_{i=0..(n-k)} (Sum_{j=k..(n-i)} binomial(2*j-k-1,j-1) *(-1)^(n-j-i) *binomial(n-i,j))/(n-i), k>0.

%F R(n,0)=1.

%e Array begins:

%e 1;

%e 1, 1;

%e 1, 1, 1;

%e 1, 2, 1, 1;

%e 1, 3, 3, 1, 1;

%e 1, 6, 5, 4, 1, 1;

%e 1, 12, 12, 7, 5, 1, 1;

%e 1, 27, 26, 19, 9, 6, 1, 1;

%p A185812 := proc(n,k) if n = k or k =0 then 1; else k*add(1/(n-i)*add(binomial(2*j-k-1,j-1) *(-1)^(n-j-i) *binomial(n-i,j),j=k..n-i),i=0..n-k) ; end if; end proc:

%p seq(seq(A185812(n,k),k=0..n),n=0..15) ; # _R. J. Mathar_, Feb 10 2011

%t r[n_, k_] := k*Sum[Binomial[2*j - k - 1, j - 1]*(-1)^(n - j - i)*Binomial[n - i, j]/(n - i), {i, 0, n - k}, {j, k, n - i}]; r[n_, 0] = 1; Table[r[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Feb 21 2013 *)

%Y Cf. A082395, apparently R(n,1), A097332 (row sums). - _R. J. Mathar_, Feb 10 2011

%K nonn,tabl

%O 0,8

%A _Vladimir Kruchinin_, Feb 05 2011

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 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)