login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A108267 Triangle read by rows, T(n, k) = [x^k] (1-x)^(n+1)*Sum_{j=0..n} binomial(n + n*j + j, n*j + j)*x^j. 9

%I #68 Apr 10 2024 11:03:17

%S 1,1,1,1,7,1,1,31,31,1,1,121,381,121,1,1,456,3431,3431,456,1,1,1709,

%T 26769,60691,26769,1709,1,1,6427,193705,848443,848443,193705,6427,1,1,

%U 24301,1343521,10350421,19610233,10350421,1343521,24301,1

%N Triangle read by rows, T(n, k) = [x^k] (1-x)^(n+1)*Sum_{j=0..n} binomial(n + n*j + j, n*j + j)*x^j.

%C G.f. of row n divided by (1-x)^(n+1) equals g.f. of row n of table A060543.

%C Matrix product of this triangle with Pascal's triangle (A007318) equals A108291.

%C Seeing each row as a polynomial, all roots seem to be negative reals. - _F. Chapoton_, Nov 01 2022

%C From _Thomas Anton_, Jan 05 2023: (Start)

%C Consider the set [m] := {1, 2, 3, ..., m} ordered cyclically, and then mapped into itself via f. Let us consider a in [m] as the (a-1)th m-th root of unity e^(2*Pi*i*(a-1)/m). Then f may be extended to a continuous map f':S^1 -> S^1 as follows:

%C For a immediately before b in the cyclic order, map the interval between a and b to S^1 so that a point in it moving clockwise at constant speed has a value moving clockwise at constant speed, and the map travels the shortest distance possible given this condition.

%C T(n, k) gives the number of f for m = n-1 such that f(1) = 1 and f' has degree k. This is trivially one n-th of the number of f with degree k when f(1) is arbitrary.

%C Equivalent to having degree k is that there are k values a immediately before b in the cyclic order such that f(a) > f(b) (in the standard order of N).

%C If we change things so that a immediately before b satisfies f(a) = f(b) corresponds to a full rotation (this is equivalent to using the condition f(a) >= f(b) in the last paragraph), then T(n, k) is the number of f with degree k+1.

%C T(n, k) is the (k+1)*(n-1)th (n-1)-nomial coefficient of power n - 1.

%C (End)

%H M. Bayer, B. Goeckner, S. J. Hong, T. McAllister, M. Olsen, C. Pinckney, J. Vega and M. Yip, <a href="https://doi.org/10.37236/9621">Lattice polytopes from Schur and symmetric Grothendieck polynomials</a>, Electronic Journal of Combinatorics, Volume 28, Issue 2 (2021). See Proposition 53 and Table 1.

%H Tanay Wakhare, <a href="https://arxiv.org/abs/2312.14743">Iterated Entropy Derivatives and Binary Entropy Inequalities</a>, arXiv:2312.14743 [cs.IT], 2023.

%H Tanay Wakhare, <a href="https://hdl.handle.net/1721.1/153999">Two Studies of Constraints in High Dimensions: Entropy Inequalities and the Randomized Symmetric Binary Perceptron</a>, Master's Thesis, MIT (2024). See p. 22.

%H Raphael Yuster, <a href="https://arxiv.org/abs/2302.12276">Almost k-union closed set systems</a>, arXiv:2302.12276 [math.CO], 2023, p. 8.

%F T(n, 1) = A048775(n) = binomial(2*n + 1, n + 1) - (n + 1).

%F Sum_{k=0..n} T(n, k) = A000169(n) = (n + 1)^n.

%F Sum_{k=0..n} T(n, k)*2^k = A108292(n).

%F From _Thomas Anton_, Jan 05 2023: (Start)

%F T(n, k) = Sum_{i=0..k} (-1)^i*binomial(n + 1, i)*binomial(n+(n+1)*(k-i), n).

%F T(n, k) = T(n, n-k).

%F (End)

%e Triangle begins:

%e 1;

%e 1, 1;

%e 1, 7, 1;

%e 1, 31, 31, 1;

%e 1, 121, 381, 121, 1;

%e 1, 456, 3431, 3431, 456, 1;

%e 1, 1709, 26769, 60691, 26769, 1709, 1;

%e 1, 6427, 193705, 848443, 848443, 193705, 6427, 1;

%e ...

%e G.f. of row 3: (1 + 31*x + 31*x^2 + x^3) = (1-x)^4*(1 + 35*x + 165*x^2 + 455*x^3 + ... + C(4*j+3,4*j)*x^j + ...).

%p p := n -> (1-x)^(n+1)*add(binomial(n + n*j + j, n*j + j)*x^j, j = 0..n):

%p seq(print(seq(coeff(p(n), x, k), k = 0..n)), n = 0..8); # _Peter Luschny_, Nov 02 2022

%t T[n_, k_] := Coefficient[(1 - x)^(n + 1)*

%t Sum[Binomial[n + n*j + j, n*j + j]*x^j, {j, 0, n}], x, k];

%t Table[T[n, k], {n, 0, 9}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Nov 23 2021 *)

%o (PARI) T(n,k)=polcoeff((1-x)^(n+1)*sum(j=0,n,binomial(n+n*j+j,n*j+j)*x^j),k)

%Y Cf. A108267, A000169, A048775, A060543, A108291, A108292, A056856.

%K nonn,tabl,changed

%O 0,5

%A _Paul D. Hanna_, May 29 2005 and May 31 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:08 EDT 2024. Contains 371794 sequences. (Running on oeis4.)