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 A026020 #26 Mar 23 2021 02:52:33 %S A026020 1,4,28,219,1804,15314,132572,1163565,10316924,92195488,829016968, %T A026020 7492106505,67991427828,619193535380,5655829748520,51794730347745, %U A026020 475390078267356,4371917301657488,40276635724273936 %N A026020 a(n) = binomial(4n, n) - binomial(4n, n - 3). %H A026020 G. C. Greubel, <a href="/A026020/b026020.txt">Table of n, a(n) for n = 0..1000</a> %F A026020 G.f.: (g - 2)*(1 - g + g^2)*g/(3*g - 4) where g = 1 + x*g^4 is the g.f. of A002293. - _Mark van Hoeij_, Nov 11 2011 %F A026020 a(n) = A005810(n) - A004333(n) for n > 2 - _Felix Fröhlich_, Jun 06 2019 %p A026020 A026020:= n-> binomial(4*n,n) - binomial(4*n,n-3); seq(A026020(n), n=0..20); # _G. C. Greubel_, Mar 22 2021 %t A026020 Table[Binomial[4n, n] - Binomial[4n, n - 3], {n, 0, 19}] (* _Alonso del Arte_, Jun 06 2019 *) %o A026020 (PARI) a(n) = binomial(4*n, n) - binomial(4*n, n-3) \\ _Felix Fröhlich_, Jun 06 2019 %o A026020 (Magma) [Binomial(4*n, n) - Binomial(4*n, n-3): n in [0..20]]; // _G. C. Greubel_, Mar 22 2021 %o A026020 (Sage) [binomial(4*n, n) - binomial(4*n, n-3) for n in (0..20)] # _G. C. Greubel_, Mar 22 2021 %Y A026020 a(n) = T(4n, n), where T is the array defined in A026009. %Y A026020 Bisections are A026012 and A026016. %Y A026020 Cf. A004333, A005810. %K A026020 nonn %O A026020 0,2 %A A026020 _Clark Kimberling_