login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A376162
Number of ordered partitions of S={(i,j):1 <= i , j <= n} where for every i and j the pairs (i+1,j) and (i,j+1) are in a later part than the part containing the pair (i,j), and the pairs (i,j), (j,i) are in the same part.
2
1, 1, 3, 39, 2905, 1538369, 6904262355, 304662492057063, 150347237334006997801, 929721796071361437087789041, 79773595676787229793797978773561927, 104165556509336140832819242491033872033130063, 2252283824141388832759484222915451435885285752729087857
OFFSET
1,3
COMMENTS
Ordered partitions are also called weak orderings.
Any such ordered partition can be written as a list of pairs (i,j) with 1 <= i <= j <= n, with either "=" or "<" between each pair, and so that (i,j) appears in the list before (i+1,j) (if i<n) and before (i,j+1) (if j<n). The list is not always unique, however.
Given any set A={a_1<...<a_n} of real numbers with sumset A+A={s_1<...<s_k}, the ordered partition of S whose parts are the sets P_x = {(i,j): a_i+a_j = s_x}, with the parts ordered by P_1<P_2<...<P_k, gives an example of the type of ordered partition being counted.
Given any set A={a_1<...<a_n} of positive integers with sumset A+A={s_1<...<s_k}, the ordered partition of S whose parts are the sets P_x = {(i,j): a_i * a_j = s_x}, with the parts ordered by P_1<P_2<...<P_k, gives an example of the type of ordered partition being counted.
Equivalently, a(n) is the number of n X n symmetric matrices whose values cover an initial interval of positive integers and whose rows have values which are strictly increasing. - Andrew Howroyd, Sep 15 2024
LINKS
FORMULA
a(n) <= A000670(n*(n+1)/2).
EXAMPLE
For n=2 the a(2)=1 ordered partition is {(1,1)}<{(2,1),(1,2)}<{(2,2)}. We can encode this as 11<12<22, writing "ij" for the pair (i,j).
For n=3 one of the a(3)=3 ordered partitions is {(1,1)}<{(1,2),(2,1)}<{(1,3),(3,1),(2,2)}<{(2,3),(3,2)}<{(3,3)}, which is encoded as either 11<12<13=22<23<33 or 11<12<22=13<23<33. The other two ordered partitions can be encoded as 11<12<22<13<23<33 and 11<12<13<22<23<33.
From Andrew Howroyd, Sep 15 2024: (Start)
The a(3) = 3 symmetric matrices are:
[1 2 3] [1 2 3] [1 2 4]
[2 3 4] [2 4 5] [2 3 5]
[3 4 5] [3 5 6] [4 5 6]
(End)
PROG
(PARI) \\ See PARI link in A374514 for program code.
vector(10, n, A376162(n)) \\ Andrew Howroyd, Sep 16 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Kevin O'Bryant, Sep 12 2024
EXTENSIONS
a(7) onwards from Andrew Howroyd, Sep 15 2024
STATUS
approved