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 A045505 #8 Sep 08 2022 08:44:56 %S A045505 1,21,262,2525,20754,152946,1040556,6659037,40599130,237978598, %T A045505 1350216660,7453221490,40188242420,212349718980,1102352779992, %U A045505 5634083759325,28400234400810,141402315307550,696257439473860 %N A045505 Convolution of A000108 (Catalan numbers) with A040075. %C A045505 Also convolution of A045492 with A000984 (central binomial coefficients); also convolution of A042985 with A000302 (powers of 4). %H A045505 G. C. Greubel, <a href="/A045505/b045505.txt">Table of n, a(n) for n = 0..1000</a> %F A045505 a(n) = binomial(n+5, 4)*(4^(n+1) - A000984(n+5)/A000984(4))/2, A000984(n) = binomial(2*n, n). %F A045505 G.f. c(x)/(1-4*x)^5, where c(x) = g.f. for Catalan numbers. %p A045505 seq(coeff(series((1-sqrt(1-4*x))/(2*x*(1-4*x)^5), x, n+1), x, n), n = 0..20); # _G. C. Greubel_, Jan 13 2020 %t A045505 Table[Binomial[n+5,4]*(2^(2*n+1) -Binomial[2*n+10, n+5]/140), {n,0,20}] (* _G. C. Greubel_, Jan 13 2020 *) %o A045505 (PARI) vector(21, n, binomial(n+5,4)*(2^(2*n+1) -binomial(2*n+10,n+5)/140)) \\ _G. C. Greubel_, Jan 13 2020 %o A045505 (Magma) [Binomial(n+5,4)*(2^(2*n+1) - Binomial(2*n+10,n+5)/140): n in [0..20]]; // _G. C. Greubel_, Jan 13 2020 %o A045505 (Sage) [binomial(n+5,4)*(2^(2*n+1) - binomial(2*n+10,n+5)/140) for n in (0..20)] # _G. C. Greubel_, Jan 13 2020 %o A045505 (GAP) List([0..20], n-> Binomial(n+5,4)*(2^(2*n+1) - Binomial(2*n+10,n+5)/140)); # _G. C. Greubel_, Jan 13 2020 %K A045505 easy,nonn %O A045505 0,2 %A A045505 _Wolfdieter Lang_