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 A144458 #3 Oct 12 2012 14:54:55 %S A144458 -2,-2,0,-4,2,2,-6,3,3,0,-10,6,6,2,3,-16,13,13,10,15,17,-26,25,25,24, %T A144458 36,47,31,-42,49,49,56,84,119,119,112,-68,95,95,122,183,271,318,385, %U A144458 329,-110,182,182,254,381,580,741,991,1127,963 %N A144458 Two sequence determinant triangle sequence: a(n)=A000045(n); b(n)=b(n-1)+b(n-2)+b(n-3) :2 start;A141036(n); t(n,m)=t(n,m)=a(m)*b(n)-b(m)*a(n). %C A144458 Row sums are:{-2, -2, 0, 0, 7, 52, 162, 546, 1730, 5291}. %C A144458 Reasoning behind the sequence is: %C A144458 Suppose we have n affine transforms that form a group: %C A144458 g={ a(1)*x+b(1),a(2)*x+b(2),...,a(n)*x+b(n)} %C A144458 on the sequences a(n) and b(n). %C A144458 We form rational projections as Moebius / bilinear transforms: %C A144458 g(projection)={( a(1)*x+b(1))/(a(n)*x+b(n)),( a(2)*x+b(2))/(a(n)*x+b(n)),...,( a(n-1)*x+b(n-1))/(a(n)*x+b(n)) %C A144458 With determinants: %C A144458 g_det={a(1)*b(n)-b(1)*a(n),a(2)*b(n)-b(2)*a(n),...,a(n-1)*b(n)-b(n-1)*a(n)} %C A144458 So that we have the triangular sequences: %C A144458 t(n,m)=a(m)*b(n)-b(m)*a(n) %F A144458 a(n)=A000045(n); b(n)=b(n-1)+b(n-2)+b(n-3) :2 start;A141036; t(n,m)=t(n,m)=a(m)*b(n)-b(m)*a(n). %e A144458 {-2}, %e A144458 {-2, 0}, %e A144458 {-4, 2, 2}, %e A144458 {-6, 3, 3, 0}, %e A144458 {-10, 6, 6, 2, 3}, %e A144458 {-16, 13, 13, 10, 15, 17}, %e A144458 {-26, 25, 25, 24, 36, 47, 31}, %e A144458 {-42, 49, 49, 56, 84, 119, 119, 112}, %e A144458 {-68, 95, 95, 122, 183, 271, 318, 385, 329}, %e A144458 {-110, 182, 182, 254, 381, 580, 741, 991, 1127, 963} %t A144458 Clear[a, b, t, n, m] a[n_] := Fibonacci[n]; b[0] = 2; b[1] = 1; b[2] = 1; b[n_] := b[n] = b[n - 1] + b[n - 2] + b[n - 3]; t[n_, m_] := a[m]*b[n] - b[m]*a[n]; Table[Table[t[n, m], {m, 0, n - 1}], {n, 1, 10}]; Flatten[%] %Y A144458 Cf. A141036, A000045. %K A144458 uned,sign %O A144458 1,1 %A A144458 _Roger L. Bagula_ and _Gary W. Adamson_, Oct 07 2008