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 A026770 #24 Sep 08 2022 08:44:49 %S A026770 1,2,7,28,120,538,2493,11854,57558,284392,1426038,7241356,37173304, %T A026770 192638992,1006564439,5297715628,28061959428,149491856978, %U A026770 800425486692,4305263668514,23251846197766,126044501870378,685569373724964,3740339567665558,20463965229643218,112250484320225118 %N A026770 a(n) = T(2n,n), T given by A026769. %C A026770 Number of lattice paths from (0,0) to (n,n) with steps (0,1), (1,0) and, when below the diagonal, (1,1). - _Alois P. Heinz_, Sep 14 2016 %H A026770 Alois P. Heinz, <a href="/A026770/b026770.txt">Table of n, a(n) for n = 0..1000</a> %F A026770 O.g.f.: 1/(1-x*(C(x)+S(x))), where C(x)=(1-sqrt(1-4x))/(2*x) is o.g.f. for A000108 and S(x)=(1-x-sqrt(1-6*x+x^2))/(2*x) is o.g.f. for A006318. - _Max Alekseyev_, Dec 02 2015 %p A026770 seq(coeff(series(2/(x + sqrt(1-4*x) + sqrt(1-6*x+x^2)), x, n+1), x, n), n = 0..30); # _G. C. Greubel_, Nov 01 2019 %t A026770 T[n_, k_] := T[n, k] = Which[k==0 || k==n, 1, n==2 && k==1, 2, k<=(n-1)/2, T[n-1, k-1] + T[n-2, k-1] + T[n-1, k], True, T[n-1, k-1] + T[n-1, k]]; %t A026770 a[n_] := T[2n, n]; %t A026770 Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, May 24 2019 *) %o A026770 (PARI) { C = (1-sqrt(1-4*x+O(x^51)))/2/x; S = (1-x-sqrt(1-6*x+x^2 +O(x^51)))/2/x; Vec(1/(1-x*(C+S))) } /* _Max Alekseyev_, Dec 02 2015 */ %o A026770 (Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( 2/(x + Sqrt(1-4*x) + Sqrt(1-6*x+x^2)) )); // _G. C. Greubel_, Nov 01 2019 %o A026770 (Sage) %o A026770 def A026770_list(prec): %o A026770 P.<x> = PowerSeriesRing(ZZ, prec) %o A026770 return P( 2/(x + sqrt(1-4*x) + sqrt(1-6*x+x^2)) ).list() %o A026770 A026770_list(30) # _G. C. Greubel_, Nov 01 2019 %Y A026770 Cf. A000108, A006318, A026781, A104625, A109980. %Y A026770 Cf. A026769, A026771, A026772, A026773, A026774, A026775, A026776, A026777, A026778, A026779. %K A026770 nonn %O A026770 0,2 %A A026770 _Clark Kimberling_