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 A178301 #61 Jan 15 2025 11:15:37 %S A178301 1,1,3,1,8,10,1,15,45,35,1,24,126,224,126,1,35,280,840,1050,462,1,48, %T A178301 540,2400,4950,4752,1716,1,63,945,5775,17325,27027,21021,6435,1,80, %U A178301 1540,12320,50050,112112,140140,91520,24310,1,99,2376,24024,126126,378378,672672,700128,393822,92378 %N A178301 Triangle T(n,k) = binomial(n,k)*binomial(n+k+1,n+1) read by rows, 0 <= k <= n. %C A178301 Antidiagonal sums are given by A113682. - _Johannes W. Meijer_, Mar 24 2013 %C A178301 The rows seem to give (up to sign) the coefficients in the expansion of the integer-valued polynomial binomial(x+n,n)*binomial(x+n,n-1) in the basis made of the binomial(x+i,i). - _F. Chapoton_, Nov 01 2022 %C A178301 Chapoton's observation above is correct: the precise expansion is binomial(x+n,n)*binomial(x+n,n-1) = Sum_{k = 0..n-1} (-1)^k*T(n-1,n-1-k)*binomial(x+2*n-1-k,2*n-1-k), as can be verified using the WZ algorithm. For example, n = 4 gives binomial(x+4,4)*binomial(x+4,3) = 35*binomial(x+7,7) - 45*binomial(x+6,6) + 15*binomial(x+5,5) - binomial(x+4,4). - _Peter Bala_, Jun 24 2023 %H A178301 David A. Corneth, <a href="/A178301/b178301.txt">Table of n, a(n) for n = 0..10010</a> %H A178301 Author?, <a href="https://dxdy.ru/topic12925.html">Norm of a continuous function</a>, dxdy.ru (in Russian). %F A178301 T(n,k) = A007318(n,k) * A178300(n+1,k+1). %F A178301 From _Peter Bala_, Jun 18 2015: (Start) %F A178301 n-th row polynomial R(n,x) = Sum_{k = 0..n} binomial(n,k)*binomial(n+k+1,n+1)*x^k = Sum_{k = 0..n} (-1)^(n+k)*binomial(n+1,k+1)*binomial(n+k+1,n+1)*(1 + x)^k. %F A178301 Recurrence: (2*n - 1)*(n + 1)*R(n,x) = 2*(4*n^2*x + 2*n^2 - x - 1)*R(n-1,x) - (2*n + 1)(n - 1)*R(n-2,x) with R(0,x) = 1, R(1,x) = 1 + 3*x. %F A178301 A182626(n) = -R(n-1,-2) for n >= 1. (End) %F A178301 From _Peter Bala_, Jul 20 2015: (Start) %F A178301 n-th row polynomial R(n,x) = Jacobi_P(n,0,1,2*x + 1). %F A178301 (1 + x)*R(n,x) gives the row polynomials of A123160. (End) %F A178301 G.f.: (1+x-sqrt(1-2*x+x^2-4*x*y))/(2*(1+y)*x*sqrt(1-2*x+x^2-4*x*y)). - _Emanuele Munarini_, Dec 16 2016 %F A178301 R(n,x) = Sum_{k=0..n} (-1)^(n+k)*(2*k+1)*P(k,2*x+1)/(n+1), where P(k,x) is the k-th Legendre polynomial (cf. A100258) and P(k,2*x+1) is the k-th shifted Legendre polynomial (cf. A063007). - _Max Alekseyev_, Jun 28 2018; corrected by _Peter Bala_, Aug 08 2021 %F A178301 Polynomial g(n,x) = R(n,-x)/(n+1) delivers the maximum of f(1)^2/(Integral_{x=0..1} f(x)^2 dx) over all polynomials f(x) with real coefficients and deg(f(x)) <= n. This maximum equals (n+1)^2. See dxdy.ru link. - _Max Alekseyev_, Jun 28 2018 %e A178301 n=0: 1; %e A178301 n=1: 1, 3; %e A178301 n=2: 1, 8, 10; %e A178301 n=3: 1, 15, 45, 35; %e A178301 n=4: 1, 24, 126, 224, 126; %e A178301 n=5: 1, 35, 280, 840, 1050, 462; %e A178301 n=6: 1, 48, 540, 2400, 4950, 4752, 1716; %e A178301 n=7: 1, 63, 945, 5775, 17325, 27027, 21021, 6435; %p A178301 A178301 := proc(n,k) %p A178301 binomial(n,k)*binomial(n+k+1,n+1) ; %p A178301 end proc: # _R. J. Mathar_, Mar 24 2013 %p A178301 R := proc(n) add((-1)^(n+k)*(2*k+1)*orthopoly:-P(k,2*x+1)/(n+1), k=0..n) end: %p A178301 for n from 0 to 6 do seq(coeff(R(n), x, k), k=0..n) od; # _Peter Luschny_, Aug 25 2021 %t A178301 Flatten[Table[Binomial[n,k]Binomial[n+k+1,n+1],{n,0,10},{k,0,n}]] (* _Harvey P. Dale_, Aug 23 2014 *) %o A178301 (Maxima) create_list(binomial(n,k)*binomial(n+k+1,n+1),n,0,12,k,0,n); /* _Emanuele Munarini_, Dec 16 2016 */ %o A178301 (PARI) R(n,x) = sum(k=0,n, (-1)^(n+k) * (2*k+1) * pollegendre(k,2*x+1)) / (n+1); \\ _Max Alekseyev_, Aug 25 2021 %Y A178301 Cf. A007318, A047781 (row sums), A178300, A182626, A123160, A132813. %K A178301 easy,nonn,tabl %O A178301 0,3 %A A178301 _Alford Arnold_, May 30 2010