The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A110490 Diagonal sums of a triangle based on the Catalan numbers. 2
1, 1, 3, 7, 20, 59, 185, 600, 2003, 6833, 23727, 83606, 298313, 1076155, 3920823, 14416987, 53482012, 200151737, 755894009, 2882782933, 11115015138, 43400057683, 172016505877, 694208585423, 2863726993748, 12130698802645 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Diagonal sums of A110488.
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} Sum_{j=0..(n-2*k)} 2*(j+1)*(k-1)^j*C(2*(n-2*k)+1, n-2*k-j)/(n-2*k+j+2).
MATHEMATICA
T[n_, 0] := CatalanNumber[n]; T[n_, 1] := CatalanNumber[n]; T[n_, n_] := 1; T[n_, k_] := Sum[2*(j + 1)*(k - 1)^j*Binomial[2 (n - k) + 1, n - k - j]/(n - k + j + 2), {j, 0, n - k}]; Join[{1, 1}, Table[Sum[T[n - k, k], {k, 0, n}], {n, 2, 50}]] (* G. C. Greubel, Aug 29 2017 *)
CROSSREFS
Cf. A110488.
Sequence in context: A084204 A030238 A132364 * A132868 A357792 A361625
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 22 2005
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 May 13 01:02 EDT 2024. Contains 372497 sequences. (Running on oeis4.)