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!)
A298485 Triangle read by rows; row 0 is 1; the n-th row for n>0 contains the coefficients in the expansion of (2-x)*(1+x)^(n-1). 1
1, 2, -1, 2, 1, -1, 2, 3, 0, -1, 2, 5, 3, -1, -1, 2, 7, 8, 2, -2, -1, 2, 9, 15, 10, 0, -3, -1, 2, 11, 24, 25, 10, -3, -4, -1, 2, 13, 35, 49, 35, 7, -7, -5, -1, 2, 15, 48, 84, 84, 42, 0, -12, -6, -1, 2, 17, 63, 132, 168, 126, 42, -12, -18, -7, -1, 2, 19, 80, 195, 300, 294, 168, 30, -30, -25, -8, -1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
T(n,k) = T(n-1,k-1)+T(n-1,k); T(0,0)=1, T(1,0)=2, T(1,1)=-1.
EXAMPLE
Triangle begins:
1;
2, -1;
2, 1, -1;
2, 3, 0, -1;
2, 5, 3, -1, -1;
2, 7, 8, 2, -2, -1;
2, 9, 15, 10, 0, -3, -1;
2, 11, 24, 25, 10, -3, -4, -1;
2, 13, 35, 49, 35, 7, -7, -5, -1;
...
MATHEMATICA
T[0, 0] = 1; T[_, 0] = 2; T[1, 1] = -1; T[n_?Positive, k_?Positive] := T[n, k] = T[n - 1, k - 1] + T[n - 1, k]; T[_, _] = 0; Table[T[n, k], {n, 0, 11}, {k, 0, n}] // Flatten (* Jean-François Alcover, Feb 05 2018 *)
CROSSREFS
Central column gives A088218.
Cf. A037012.
Sequence in context: A211352 A087187 A029380 * A332997 A298614 A108129
KEYWORD
sign,tabl
AUTHOR
Seiichi Manyama, Jan 20 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 28 01:20 EDT 2024. Contains 373761 sequences. (Running on oeis4.)