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!)
A232535 Triangle T(n,k), 0 <= k <= n, read by rows defined by: T(n,k) = (binomial(2*n,2*k) + binomial(2*n+1,2*k))/2. 0
1, 1, 2, 1, 8, 3, 1, 18, 25, 4, 1, 32, 98, 56, 5, 1, 50, 270, 336, 105, 6, 1, 72, 605, 1320, 891, 176, 7, 1, 98, 1183, 4004, 4719, 2002, 273, 8, 1, 128, 2100, 10192, 18590, 13728, 4004, 400, 9, 1, 162, 3468, 22848, 59670, 68068, 34476, 7344, 561, 10, 1, 200, 5415 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Sum_{k=0..n}T(n,k)*x^k = A164111(n), A000012(n), A002001(n), A001653(n+1), A001019(n), A166965(n) for x =-1, 0, 1, 2, 4, 9 respectively.
LINKS
FORMULA
G.f.: (1-x)/(1-2*x*(1+y)+x^2*(1-y)^2).
T(n,k) = 2*T(n-1,k)+2*T(n-1,k-1)+2*T(n-2,k-1)-T(n-2,k)-T(n-2,k-2), T(0,0)=T(1,0)=1, T(1,1)=2, T(n,k)=0 if k<0 or if k>n.
T(n,k) = (A086645(n,k) + A091042(n,k))/2.
T(n,k) = binomial(2*n,2*k)*(2*n+1-k)/(2*n+1-2*k). - Peter Luschny, Nov 26 2013
EXAMPLE
Triangle begins:
1
1, 2
1, 8, 3
1, 18, 25, 4
1, 32, 98, 56, 5
1, 50, 270, 336, 105, 6
1, 72, 605, 1320, 891, 176, 7
1, 98, 1183, 4004, 4719, 2002, 273, 8
1, 128, 2100, 10192, 18590, 13728, 4004, 400, 9
MAPLE
T := (n, k) -> binomial(2*n, 2*k)*(2*n+1-k)/(2*n+1-2*k);
seq(seq(T(n, k), k=0..n), n=0..9); # Peter Luschny, Nov 26 2013
MATHEMATICA
Flatten[Table[(Binomial[2n, 2k]+Binomial[2n+1, 2k])/2, {n, 0, 10}, {k, 0, n}]] (* Harvey P. Dale, Jul 05 2015 *)
CROSSREFS
Cf. Columns : A000012, A001105, A180324 ; Diagonals: A000027, A131423
Cf. T(2*n,n): A228329, Row sums : A002001
Sequence in context: A011208 A001281 A331312 * A065826 A286899 A123235
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Nov 25 2013
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 14 16:21 EDT 2024. Contains 372533 sequences. (Running on oeis4.)