This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A123265 #5 Sep 08 2013 13:30:57 %S A123265 2,1,2,3,3,2,4,8,5,2,7,15,15,7,2,11,30,35,24,9,2,18,56,80,66,35,11,2, %T A123265 29,104,171,170,110,48,13,2,47,189,355,407,315,169,63,15,2,76,340,715, %U A123265 932,832,532,245,80,17,2 %N A123265 Fibonacci-Lucas triangle read by rows. %C A123265 As a Riordan array, this is ((2-x)/(1-x-x^2),x/(1-x-x^2)) . Row sums form A078343, diagonals sums form A014551. %F A123265 T(n,k)=T(n-1,k-1)+T(n-1,k)+T(n-2,k), T(0,0)=2, T(1,0)=1, T(n,k)=0 if k<0 or if k>n . T(n,0)=L(n)=A000032(n),Lucas numbers. %e A123265 Triangle begins: %e A123265 2; %e A123265 1, 2; %e A123265 3, 3, 2; %e A123265 4, 8, 5, 2; %e A123265 7, 15, 15, 7, 2; %e A123265 11, 30, 35, 24, 9, 2; %e A123265 18, 56, 80, 66, 35, 11, 2; %e A123265 29, 104, 171, 170, 110, 48, 13, 2; %Y A123265 Cf. A000032, A099920 ; A007395, A005408, A005563. %K A123265 nonn,tabl %O A123265 0,1 %A A123265 _Philippe Deléham_, Nov 07 2006