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!)
A320508 T(n,k) = binomial(n - k - 1, k), 0 <= k < n, and T(n,n) = (-1)^n, triangle read by rows. 1
1, 1, -1, 1, 0, 1, 1, 1, 0, -1, 1, 2, 0, 0, 1, 1, 3, 1, 0, 0, -1, 1, 4, 3, 0, 0, 0, 1, 1, 5, 6, 1, 0, 0, 0, -1, 1, 6, 10, 4, 0, 0, 0, 0, 1, 1, 7, 15, 10, 1, 0, 0, 0, 0, -1, 1, 8, 21, 20, 5, 0, 0, 0, 0, 0, 1, 1, 9, 28, 35, 15, 1, 0, 0, 0, 0, 0, -1, 1, 10, 36 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,12
COMMENTS
Differs from A164925 in signs.
The n-th row consists of the coefficients in the expansion of (-x)^n + (((1 + sqrt(1 + 4*x))/2)^n -((1 - sqrt(1 + 4*x))/2)^n )/sqrt(1 + 4*x).
The coefficients in the expansion of Sum_{j=0..floor((n - 1)/2)} T(n,k)*x^(n - 2*j - 1) yield the n-th row in A168561, the coefficients of the n-th Fibonacci polynomial.
Row n sums up to Fibonacci(n) + (-1)^n (A008346).
LINKS
FORMULA
G.f.: 1/((1 + x*y)*(1 - y - x*y^2)).
E.g.f.: exp(-x*y) + (exp(y*(1 + sqrt(1 + 4*x))/2) - exp(y*(1 - sqrt(1 + 4*x))/2))/sqrt(1 + 4*x).
T(n,1) = A023443(n).
EXAMPLE
Triangle begins:
1;
1, -1;
1, 0, 1;
1, 1, 0, -1;
1, 2, 0, 0, 1;
1, 3, 1, 0, 0, -1;
1, 4, 3, 0, 0, 0, 1;
1, 5, 6, 1, 0, 0, 0, -1;
1, 6, 10, 4, 0, 0, 0, 0, 1;
1, 7, 15, 10, 1, 0, 0, 0, 0, -1;
1, 8, 21, 20, 5, 0, 0, 0, 0, 0, 1;
1, 9, 28, 35, 15, 1, 0, 0, 0, 0, 0, -1;
...
MATHEMATICA
Table[Table[Binomial[n - k - 1, k], {k, 0, n}], {n, 0, 12}]//Flatten
PROG
(Maxima) create_list(binomial(n - k - 1, k), n, 0, 12, k, 0, n);
CROSSREFS
Inspired by A123018.
Sequence in context: A039804 A277537 A323179 * A164925 A334546 A035671
KEYWORD
sign,easy,tabl
AUTHOR
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 11 02:40 EDT 2024. Contains 372388 sequences. (Running on oeis4.)