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!)
A127895 Riordan array (1/(1+x)^3, x/(1+x)^3). 3
1, -3, 1, 6, -6, 1, -10, 21, -9, 1, 15, -56, 45, -12, 1, -21, 126, -165, 78, -15, 1, 28, -252, 495, -364, 120, -18, 1, -36, 462, -1287, 1365, -680, 171, -21, 1, 45, -792, 3003, -4368, 3060, -1140, 231, -24, 1, -55, 1287, -6435, 12376, -11628, 5985, -1771, 300, -27, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The matrix inverse of the convolution triangle of A001764 (number of ternary trees). - Peter Luschny, Oct 09 2022
LINKS
FORMULA
T(n, k) = (-1)^(n-k)*binomial(n +2*k +2, n-k).
Sum_{k=0..n} T(n, k) = A127896(n) (row sums).
Sum_{k=0..floor(n/2)} T(n-k, k) = (-1)^n*A095263(n) (diagonal sums).
EXAMPLE
Triangle begins
1;
-3, 1;
6, -6, 1;
-10, 21, -9, 1;
15, -56, 45, -12, 1;
-21, 126, -165, 78, -15, 1;
28, -252, 495, -364, 120, -18, 1;
-36, 462, -1287, 1365, -680, 171, -21, 1;
45, -792, 3003, -4368, 3060, -1140, 231, -24, 1;
-55, 1287, -6435, 12376, -11628, 5985, -1771, 300, -27, 1;
66, -2002, 12870, -31824, 38760, -26334, 10626, -2600, 378, -30, 1;
MAPLE
# Uses function InvPMatrix from A357585. Adds column 1, 0, 0, ... to the left.
InvPMatrix(10, n -> binomial(3*n, n)/(2*n+1)); # Peter Luschny, Oct 09 2022
MATHEMATICA
Table[(-1)^(n-k)*Binomial[n+2*k+2, n-k], {n, 0, 10}, {k, 0, n}]//Flatten (* G. C. Greubel, Apr 29 2018 *)
PROG
(PARI) for(n=0, 10, for(k=0, n, print1((-1)^(n-k)*binomial(n+2*k+2, n-k), ", "))) \\ G. C. Greubel, Apr 29 2018
(Magma) [(-1)^(n-k)*Binomial(n+2*k+2, n-k): k in [0..n], n in [0..10]]; // G. C. Greubel, Apr 29 2018
(Sage) flatten([[(-1)^(n-k)*binomial(n+2*k+2, n-k) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Apr 16 2021
CROSSREFS
Inverse is A127898.
Alternating sign version of A127893.
Sequence in context: A124847 A249251 A127893 * A325005 A325013 A152685
KEYWORD
easy,sign,tabl
AUTHOR
Paul Barry, Feb 04 2007
EXTENSIONS
Terms a(50) onward added by G. C. Greubel, Apr 29 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 June 3 05:44 EDT 2024. Contains 373054 sequences. (Running on oeis4.)