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!)
A189177 Diagonal sums of the Riordan matrix (1+x/sqrt(1-4*x),(1-sqrt(1-4*x))/2) (A189175). 2
1, 1, 3, 8, 26, 88, 311, 1125, 4139, 15411, 57901, 219070, 833509, 3185834, 12223298, 47048989, 181596815, 702589992, 2723964698, 10580344863, 41163089721, 160380285133, 625698670720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = sum(binomial(2*n-3*k,n-k)*(n^2-n*k-k^2-k)/((2*n-3*k)*(2*n-3*k-1)),k=0..floor(n/2))), for n>=3.
G.f.: (2-9*x+3*x^2+4*x^3+(x+3*x^2)*sqrt(1-4*x))/(2*(1-4*x)(1-x+x^3)).
MATHEMATICA
T[n_, k_]=If[n==k, 1, Binomial[2n-k, n-k](n^2+n k-k^2-k)/((2n-k)(2n-k-1))]
Table[Sum[T[n-k, k], {k, 0, Floor[n/2]}], {n, 0, 22}]
PROG
(Maxima) T(n, k):=if n=k then 1 else binomial(2*n-k, n-k)*(n^2+n*k-k^2-k)/((2*n-k)*(2*n-k-1));
makelist(sum(T(n-k, k), k, 0, floor(n/2)), n, 0, 22);
CROSSREFS
Sequence in context: A369618 A148814 A161938 * A151444 A151458 A290351
KEYWORD
nonn,easy
AUTHOR
Emanuele Munarini, Apr 18 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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)