login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176046
Triangle T(n,m) = 1 + F(m) + F(n-m) - F(n), read by rows, where F = A000045 is the Fibonacci sequence.
0
1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, -1, -1, 0, 1, 1, -1, -3, -3, -3, -1, 1, 1, -3, -6, -7, -7, -6, -3, 1, 1, -6, -11, -13, -14, -13, -11, -6, 1, 1, -11, -19, -23, -25, -25, -23, -19, -11, 1, 1, -19, -32, -39, -43, -44, -43, -39, -32, -19, 1
OFFSET
0,5
COMMENTS
Row sums are 1,2,4,4,4,0,-9,-30,-72,-154,-308,...
EXAMPLE
1;
1, 1;
1, 2, 1;
1, 1, 1, 1;
1, 1, 0, 1, 1;
1, 0, -1, -1, 0, 1;
1, -1, -3, -3, -3, -1, 1;
1, -3, -6, -7, -7, -6, -3, 1;
1, -6, -11, -13, -14, -13, -11, -6, 1;
1, -11, -19, -23, -25, -25, -23, -19, -11, 1;
1, -19, -32, -39, -43, -44, -43, -39, -32, -19, 1;
MATHEMATICA
L[n_, m_] = Fibonacci[m] + Fibonacci[n - m] - (Fibonacci[0] + Fibonacci[n]) + 1;
Table[Table[L[n, m], {m, 0, n}], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A037821 A316863 A037911 * A172090 A037912 A056980
KEYWORD
sign,tabl,easy
AUTHOR
STATUS
approved