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!)
A271825 Triangle read by rows: T(n,m) = (-1)^(n-m-1)*m*binomial(2*n-3*m-1,n-m-1)/(n-m), T(n,n)=1. 1
1, 1, 1, -1, 2, 1, 2, -1, 3, 1, -5, 2, 0, 4, 1, 14, -5, 1, 2, 5, 1, -42, 14, -3, 0, 5, 6, 1, 132, -42, 9, -1, 0, 9, 7, 1, -429, 132, -28, 4, 0, 2, 14, 8, 1, 1430, -429, 90, -14, 1, 0, 7, 20, 9, 1, -4862, 1430, -297, 48, -5, 0, 0, 16, 27, 10, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
Indranil Ghosh, Rows 1..100, flattened
FORMULA
G.f.: -(x*sqrt(4*x+1)*y+x*y)/(x*sqrt(4*x+1)*y+x*y-2).
Sum_{n>=m) T(n,m)*x^n is expansion of (x*(1+sqrt(1+4*x))/2)^m.
EXAMPLE
Triangle begins
1;
1, 1;
-1, 2, 1;
2, -1, 3, 1;
-5, 2, 0, 4, 1;
14, -5, 1, 2, 5, 1;
-42, 14, -3, 0, 5, 6, 1;
MATHEMATICA
Flatten[Table[If[n==m, 1, (-1)^(n-m-1)*m*Binomial[2n-3m-1, n-m-1]/(n-m)], {n, 1, 11}, {m, 1, n}]] (* Indranil Ghosh, Feb 28 2017 *)
PROG
(Maxima)
taylor(1/(1-y*A(x))-1, x, 0, 10, y, 0, 10);
(PARI) a(n, m)=if(n==m, 1, (-1)^(n-m-1)*m*binomial(2*n-3*m-1, n-m-1)/(n-m));
tabl(nn)=for(n=1, nn, for(m=1, n, print1(a(n, m), ", ")); print)
tabl(11); \\ Indranil Ghosh, Feb 28 2017
CROSSREFS
Cf. A000108.
Sequence in context: A138222 A138224 A181472 * A271875 A324194 A046205
KEYWORD
sign,tabl
AUTHOR
Vladimir Kruchinin, Apr 14 2016
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)