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 A030111 #28 Feb 19 2017 03:30:23 %S A030111 1,1,1,2,1,1,2,3,1,1,3,3,4,1,1,3,6,4,5,1,1,4,6,10,5,6,1,1,4,10,10,15, %T A030111 6,7,1,1,5,10,20,15,21,7,8,1,1,5,15,20,35,21,28,8,9,1,1,6,15,35,35,56, %U A030111 28,36,9,10,1,1,6,21,35,70,56,84,36,45,10,11,1,1,7,21,56,70,126,84,120,45,55,11,12,1 %N A030111 Triangular array in which k-th entry in n-th row is C([ (n+k)/2 ],k) (1<=k<=n). %C A030111 Same as A046854, but missing the initial column of ones. %C A030111 Riordan array (1/((1-x)(1-x^2)),x/(1-x^2)). Diagonal sums are A052551. - _Paul Barry_, Sep 30 2006 %H A030111 Indranil Ghosh, <a href="/A030111/b030111.txt">Rows 0..125, flattened</a> %F A030111 G.f.: 1 / (1 - x - xy - x^2 + x^2y + x^3). - _Ralf Stephan_, Feb 13 2005 %F A030111 Sum(k=1, n, T(n, k)) = F(n+2)-1 where F(n) is the n-th Fibonacci number. - _Benoit Cloitre_, Oct 07 2002 %e A030111 1; %e A030111 1 1; %e A030111 2 1 1; %e A030111 2 3 1 1; %e A030111 3 3 4 1 1; %e A030111 3 6 4 5 1 1; %e A030111 ... %t A030111 Flatten[Table[Binomial[Floor[(n+k)/2],k],{n,20},{k,n}]] (* _Harvey P. Dale_, Jun 03 2014 *) %o A030111 (PARI) {T(n, k) = binomial((n+k)\2, k)}; /* _Michael Somos_, Jul 23 1999 */ %o A030111 (PARI) printp(matrix(8,8,n,k,binomial((n+k)\2,k))) %o A030111 (PARI) for(n=1,7, for(k=1,n,print1(binomial((n+k)\2,k)); if(k==n,print1("; ")); print1(" "))) %Y A030111 Cf. A066170. %K A030111 tabl,nonn %O A030111 1,4 %A A030111 Jacques Haubrich (jhaubrich(AT)freeler.nl) %E A030111 Description corrected by _Michael Somos_, Jul 23 1999 %E A030111 Corrected and extended by _Harvey P. Dale_, Jun 03 2014