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 A026379 #21 Aug 11 2015 06:41:25 %S A026379 1,7,39,202,1015,5028,24731,121208,593019,2899335,14173401,69301422, %T A026379 338990145,1659037695,8124085575,39806373880,195160896835, %U A026379 957396540285,4699409632805,23080158080150,113414575414245,557601196738190 %N A026379 a(n) = number of integer strings s(0),...,s(n) counted by array T in A026374 that have s(n)=3; also a(n) = T(2n-1,n-2). %H A026379 Vincenzo Librandi, <a href="/A026379/b026379.txt">Table of n, a(n) for n = 2..300</a> %F A026379 a(n) = [t^(n+1)]{(1+t)(1+3t+t^2)^(n-1)}. - _Emeric Deutsch_, Jan 30 2004 %F A026379 G.f.: -1/x+2-2*x^2/(10*x^2+sqrt(1-5*x)*sqrt(1-x)*(4*x-1)-7*x+1). - _Vladimir Kruchinin_, Aug 11 2015 %p A026379 sum(binomial(n,k)*binomial(2*k+1,k-1),k=0..n); n=0,1,... # _N. J. A. Sloane_ %t A026379 a[n_] := (n-1)*Hypergeometric2F1[5/2, 2-n, 4, -4]; Table[a[n], {n, 2, 23}](* _Jean-François Alcover_, Jun 12 2012, after _N. J. A. Sloane_ *) %t A026379 Table[Sum[Binomial[n,k]Binomial[2k+1,k-1],{k,0,n}],{n,30}] (* _Harvey P. Dale_, Apr 28 2013 *) %Y A026379 Partial sums of A034942. %K A026379 nonn,nice,easy %O A026379 2,2 %A A026379 _Clark Kimberling_