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”).

A135966
Triangle, read by rows, where T(n,k) = fibonacci(k(n-k) + 1) for n>=k>=0.
1
1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 5, 3, 1, 1, 5, 13, 13, 5, 1, 1, 8, 34, 55, 34, 8, 1, 1, 13, 89, 233, 233, 89, 13, 1, 1, 21, 233, 987, 1597, 987, 233, 21, 1, 1, 34, 610, 4181, 10946, 10946, 4181, 610, 34, 1, 1, 55, 1597, 17711, 75025, 121393, 75025, 17711, 1597, 55, 1
OFFSET
0,8
EXAMPLE
Triangle begins:
1;
1, 1;
1, 1, 1;
1, 2, 2, 1;
1, 3, 5, 3, 1;
1, 5, 13, 13, 5, 1;
1, 8, 34, 55, 34, 8, 1;
1, 13, 89, 233, 233, 89, 13, 1;
1, 21, 233, 987, 1597, 987, 233, 21, 1;
1, 34, 610, 4181, 10946, 10946, 4181, 610, 34, 1;
1, 55, 1597, 17711, 75025, 121393, 75025, 17711, 1597, 55, 1; ...
MATHEMATICA
Flatten[Table[Fibonacci[k(n-k)+1], {n, 0, 10}, {k, 0, n}]] (* Harvey P. Dale, Feb 03 2015 *)
PROG
(PARI) T(n, k)=fibonacci(k*(n-k)+1)
CROSSREFS
Cf. A135967.
Sequence in context: A034327 A034254 A157103 * A292741 A356802 A060351
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Dec 11 2007
STATUS
approved