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 A210574 #17 Aug 03 2014 14:01:40 %S A210574 1,1,1,1,3,1,1,7,12,1,1,15,50,264,1,1,31,180,1920,11970,1,1,63,602, %T A210574 11760,146160,1689600,1,1,127,1932,66024,1477980,34214400,603233280,1, %U A210574 1,255,6050,353304,13556970,568656000,20043279360,586244602944,1 %N A210574 Lower triangular matrix in the LU-decomposition of the Vandermonde determinants generated by Fibonacci numbers. %C A210574 If the Vandermonde matrix V = [F(i+2)^j]_(i,j=0)^n has LU-decomposition, then this triangle is given by L. %H A210574 Vincenzo Librandi, <a href="/A210574/b210574.txt">Rows n = 0..70, flattened</a> %e A210574 The triangle begins: %e A210574 1 %e A210574 1, 1 %e A210574 1, 3, 1 %e A210574 1, 7, 12, 1 %e A210574 1, 15, 50, 264, 1 %e A210574 1, 31, 180, 1920, 11970, 1 %e A210574 1, 63, 602, 11760, 146160, 1689600, 1 %e A210574 1, 127, 1932, 66024, 1477980, 34214400, 603233280, 1 %e A210574 1, 255, 6050, 353304, 13556970, 568656000, 20043279360, 586244602944, 1 %t A210574 n = 10; f = Fibonacci[Range[2, n + 1]]; m = Outer[ Power, f, Range[0, n - 1]]; mi = Transpose[LUDecomposition[m][[1]]]; Flatten[Table[Append[Take[mi[[i]], i - 1], 1], {i, n}]] (* _T. D. Noe_, Mar 22 2012 *) %Y A210574 Cf. A203311, A210341. %K A210574 nonn,tabl %O A210574 0,5 %A A210574 _Emanuele Munarini_, Mar 22 2012