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!)
A264051 Triangle read by rows: T(n,k) (n>=0, 0<=k<=A264078(n)) is the number of integer partitions of n having k standard Young tableaux such that no entries i and i+1 appear in the same row. 3

%I #24 Jan 22 2016 08:08:21

%S 0,1,0,1,1,1,1,2,2,2,1,2,3,0,2,4,2,1,1,1,1,1,4,3,1,0,0,2,2,0,1,0,1,0,

%T 0,0,1,7,2,0,0,1,0,3,0,1,0,2,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,

%U 7,3,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0,1,1,1

%N Triangle read by rows: T(n,k) (n>=0, 0<=k<=A264078(n)) is the number of integer partitions of n having k standard Young tableaux such that no entries i and i+1 appear in the same row.

%C Row sums give A000041.

%C Column k=0 gives A025065(n-2) for n>=2.

%H Alois P. Heinz, <a href="/A264051/b264051.txt">Rows n = 0..14, flattened</a>

%H S. Dulucq and O. Guibert, <a href="http://dx.doi.org/10.1016/S0012-365X(96)83009-3">Stack words, standard tableaux and Baxter permutations</a>, Disc. Math. 157 (1996), 91-106.

%H FindStat - Combinatorial Statistic Finder, <a href="http://www.findstat.org/StatisticsDatabase/St000212">Number of standard Young tableaux of an integer partition such that no k and k+1 appear in the same row</a>.

%F Sum_{k=1..A264078(n)} k*T(n,k) = A237770(n). - _Alois P. Heinz_, Nov 02 2015

%e Triangle begins:

%e 0,1,

%e 0,1,

%e 1,1,

%e 1,2,

%e 2,2,1,

%e 2,3,0,2,

%e 4,2,1,1,1,1,1,

%e 4,3,1,0,0,2,2,0,1,0,1,0,0,0,1,

%e 7,2,0,0,1,0,3,0,1,0,2,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,

%e ...

%p h:= proc(l, j) option remember; `if`(l=[], 1,

%p `if`(l[1]=0, h(subsop(1=[][], l), j-1), add(

%p `if`(i<>j and l[i]>0 and (i=1 or l[i]>l[i-1]),

%p h(subsop(i=l[i]-1, l), i), 0), i=1..nops(l))))

%p end:

%p g:= proc(n, i, l) `if`(n=0 or i=1, x^h([1$n, l[]], 0),

%p `if`(i<1, 0, g(n, i-1, l)+ `if`(i>n, 0,

%p g(n-i, i, [i, l[]]))))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(g(n$2, [])):

%p seq(T(n), n=0..10); # _Alois P. Heinz_, Nov 02 2015

%t h[l_, j_] := h[l, j] = If[l == {}, 1, If[l[[1]] == 0, h[ReplacePart[l, 1 -> Sequence[]], j - 1], Sum[If[i != j && l[[i]] > 0 && (i == 1 || l[[i]] > l[[i - 1]]), h[ReplacePart[l, i -> l[[i]] - 1], i], 0], {i, 1, Length[l]} ]]]; g[n_, i_, l_] := If[n == 0 || i == 1, x^h[Join[Array[1 &, n], l], 0], If[i < 1, 0, g[n, i - 1, l] + If[i > n, 0, g[n - i, i, Join[{i}, l]]] ]]; T[n_] := Function[p, Table[Coefficient[p, x, i], {i, 0, Exponent[p, x]}]][g[n, n, {}]]; Table[T[n], {n, 0, 10}] // Flatten (* _Jean-François Alcover_, Jan 22 2016, after _Alois P. Heinz_ *)

%Y Cf. A000041, A001181, A237770, A264078.

%K nonn,tabf

%O 0,8

%A _Christian Stump_, Nov 01 2015

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 24 10:53 EDT 2024. Contains 371936 sequences. (Running on oeis4.)