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!)
A131429 Triangle read by rows: T(n,k) = C(n) + C(k) - 1 where C(n) = A000108(n) are the Catalan numbers, 0 <= k <= n. 4
1, 1, 1, 2, 2, 3, 5, 5, 6, 9, 14, 14, 15, 18, 27, 42, 42, 43, 46, 55, 83, 132, 132, 133, 136, 145, 173, 263, 429, 429, 430, 433, 442, 470, 560, 857, 1430, 1430, 1431, 1434, 1443, 1471, 1561, 1858, 2859, 4862, 4862, 4863, 4866, 4875, 4903, 4993, 5290, 6291, 9723 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Left column = Catalan numbers, A000108. Right border = 2*A000108 - 1. Row sums = A131430: (1, 2, 7, 25, 88, 311, 1114, ...).
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1274 (first 50 rows)
FORMULA
Equals (A000012 * A131427) + (A131427 * A000012) - A000012 as infinite lower triangular matrices.
EXAMPLE
First few rows of the triangle are:
1;
1, 1;
2, 2, 3;
5, 5, 6, 9;
14, 14, 15, 18, 27;
42, 42, 43, 46, 55, 83;
...
PROG
(PARI) T(n, k)=if(k<=n, binomial(2*n, n)/(n+1) + binomial(2*k, k)/(k+1) - 1, 0) \\ Andrew Howroyd, Sep 01 2018
CROSSREFS
Column k=0 is A000108.
Row sums are A131430.
Sequence in context: A289199 A029039 A316185 * A105605 A237710 A090473
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jul 10 2007
EXTENSIONS
Name clarified by Andrew Howroyd, Sep 01 2018
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 March 28 13:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)