OFFSET
1,10
COMMENTS
The original definition was: Eigentriangle, row sums = Fibonacci numbers.
Even n rows are composed of odd-indexed Fibonacci numbers interpolated with zeros.
Odd n rows are composed of even-indexed Fibonacci numbers with alternate zeros.
Sum of n-th row terms = rightmost term of next row, = F(n-1). Row sums = F(n).
FORMULA
EXAMPLE
First few rows of the triangle =
1;
0, 1;
1, 0, 1;
0, 1, 0, 2;
1, 0, 1, 0, 3
0, 1, 0, 2, 0, 5;
1, 0, 1, 0, 3, 0, 8;
0, 1, 0, 2, 0, 5, 0, 13;
1, 0, 1, 0, 3, 0, 8, 0, 21;
...
Row 5 = (1, 0, 1, 0, 3) = termwise products of (1, 0, 1, 0, 1) and (1, 1, 1, 2, 3).
PROG
(PARI) MT(n, k) = (1+(-1)^(n-k))/2;
MF(n, k) = n--; k--; if (n==k, if (n==0, 1, fibonacci(n)), 0);
tabl(nn) = {my(T=matrix(nn, nn, n, k, MT(n, k))); my(F=matrix(nn, nn, n, k, MF(n, k))); my(P=T*F); matrix(nn, nn, n, k, if (n>=k, P[n, k], 0)); } \\ Michel Marcus, Mar 08 2021
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 12 2008
EXTENSIONS
Moved a comment to the Name section. - Omar E. Pol, Mar 08 2021
STATUS
approved