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 A320047 #51 Jul 21 2025 00:49:13 %S A320047 5,6,28,18,81,36,176,60,325,90,540,126,833,168,1216,216,1701,270,2300, %T A320047 330,3025,396,3888,468,4901,546,6076,630,7425,720,8960,816,10693,918, %U A320047 12636,1026,14801,1140,17200,1260,19845,1386,22748,1518,25921,1656 %N A320047 Consider coefficients U(m,l,k) defined by the identity Sum_{k=1..l} Sum_{j=0..m} A302971(m,j)/A304042(m,j) * k^j * (T-k)^j = Sum_{k=0..m} (-1)^(m-k) * U(m,l,k) * T^k that holds for all positive integers l,m,T. This sequence gives 2-column table read by rows, where n-th row lists coefficients U(1,n,k) for k = 0, 1 and n >= 1. %C A320047 For l=T, the identity takes the form T^(2m+1) = Sum_{k=0..m} (-1)^(m-k)*U(m,T,k)*T^k, which holds for all positive integers T and m. %H A320047 Max Alekseyev, <a href="https://mathoverflow.net/q/309470">Derivation of the general formula for U(m,n,k)</a>, MathOverflow, 2018. %H A320047 Petro Kolosov, <a href="https://arxiv.org/abs/1603.02468">On the link between binomial theorem and discrete convolution</a>, arXiv:1603.02468 [math.NT], 2016-2025. %H A320047 Petro Kolosov, <a href="https://kolosovpetro.github.io/pdf/OEIS_Um(n,k)_coefficients.pdf">More details on derivation of present sequence</a>. %H A320047 Petro Kolosov, <a href="https://kolosovpetro.github.io/arxiv_1603_02468/identity_1_1_r_h_s.txt">Mathematica program</a>, verifies the identity T^(2m+1) = Sum_{k=0..m} (-1)^(m-k)*U(m,T,k)*T^k for m=0,1,...,12. %H A320047 Petro Kolosov, <a href="https://kolosovpetro.github.io/pdf/HistoryAndOverviewOfPolynomialP.pdf">History and overview of the polynomial P_b^m(x)</a>, 2024. %H A320047 Petro Kolosov, <a href="https://arxiv.org/abs/2503.07618">An efficient method of spline approximation for power function</a>, arXiv:2503.07618 [math.GM], 2025. %F A320047 U(m,l,t) = (-1)^m * Sum_{k=1..l} Sum_{j=t..m} binomial(j,t) * R(m,j) * k^{2j-t} * (-1)^j, where m = 1, l >= 1 and R(m,j) = A302971(m,j)/A304042(m,j); after _Max Alekseyev_, see links. %F A320047 Conjectures from _Colin Barker_, Aug 03 2019: (Start) %F A320047 G.f.: x*(5 + 6*x + 8*x^2 - 6*x^3 - x^4) / ((1 - x)^4*(1 + x)^4). %F A320047 a(n) = (4 - 4*(-1)^n - 3*(-5+(-1)^n)*n - 3*(-3+(-1)^n)*n^2 + (1+(-1)^(1+n))*n^3) / 8. %F A320047 a(n) = 4*a(n-2) - 6*a(n-4) + 4*a(n-6) - a(n-8) for n>8. %F A320047 (End) %e A320047 column column %e A320047 l k=0 k=1 %e A320047 --- ------ ------ %e A320047 1 5 6 %e A320047 2 28 18 %e A320047 3 81 36 %e A320047 4 176 60 %e A320047 5 325 90 %e A320047 6 540 126 %e A320047 7 833 168 %e A320047 8 1216 216 %e A320047 9 1701 270 %e A320047 10 2300 330 %e A320047 11 3025 396 %e A320047 12 3888 468 %e A320047 ... %t A320047 (* Define the R[n,k] := A302971(n,k)/A304042(n,k) *) %t A320047 R[n_, k_] := 0 %t A320047 R[n_, k_] := (2 k + 1)*Binomial[2 k, k]* %t A320047 Sum[R[n, j]*Binomial[j, 2 k + 1]*(-1)^(j - 1)/(j - k)* %t A320047 BernoulliB[2 j - 2 k], {j, 2 k + 1, n}] /; 2 k + 1 <= n %t A320047 R[n_, k_] := (2 n + 1)*Binomial[2 n, n] /; k == n; %t A320047 (* Define the U(m,l,t) coefficients *) %t A320047 U[m_, l_, t_] := (-1)^m Sum[Sum[Binomial[j, t] R[m,j] k^(2 j - t) (-1)^j, {j, t, m}], {k, 1, l}]; %t A320047 (* Define the value of the variable 'm' to be m = 1 for A320047 *) %t A320047 m = 1; %t A320047 (* Print first 10 rows of U(m,l,t) coefficients for 'm' defined above *) %t A320047 Column[Table[U[m, l, t], {l, 1, 10}, {t, 0, m}]] %Y A320047 The case m=2 is A316349. %Y A320047 The case m=3 is A316387. %Y A320047 Column k=0 is A275709. %Y A320047 Column k=1 is A028896. %Y A320047 Cf. A302971, A304042, A287326, A300656, A300785. %K A320047 nonn,tabf %O A320047 1,1 %A A320047 _Kolosov Petro_, Oct 04 2018