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 A107981 #5 Feb 27 2015 09:27:03 %S A107981 1,6,10,20,40,50,50,110,155,175,105,245,371,455,490,196,476,756,980, %T A107981 1120,1176,336,840,1380,1860,2220,2436,2520,540,1380,2325,3225,3975, %U A107981 4515,4830,4950,825,2145,3685,5225,6600,7700,8470,8910,9075,1210,3190 %N A107981 Triangle read by rows: T(n,k) = (k+1)(k+2)(n+2)(n+3)(6n^2 - 8n*k + 18n + 3k^2 - 11k + 12)/144 for 0<=k<=n. %C A107981 Kekulé numbers for certain benzenoids. Column 0 yields A002415. Main diagonal yields A006542. %D A107981 S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988 (p. 237, K{F(n,3,l)}). %e A107981 Triangle begins: %e A107981 1; %e A107981 6,10; %e A107981 20,40,50; %e A107981 50,110,155,175; %p A107981 T:=proc(n,k) if k<=n then 1/144*(k+1)*(k+2)*(n+2)*(n+3)*(6*n^2-8*n*k+18*n+3*k^2-11*k+12) else 0 fi end: for n from 0 to 9 do seq(T(n,k),k=0..n) od; # yields sequence in triangular form %Y A107981 Cf. A002415, A006542. %K A107981 nonn,tabl %O A107981 0,2 %A A107981 _Emeric Deutsch_, Jun 12 2005