A175176
Number of vector sums of two permutations of 1,2,...,n.
Original entry on oeis.org
1, 1, 3, 19, 201, 3081, 62663, 1598185, 49158651, 1772832643, 73394322615, 3431751900897, 178904412061235, 10290301519034057, 647401635395456919, 44227879174393279133
Offset: 0
The permutation sums for n=2 are (1,2) + (1,2) = (2,4); (1,2) + (2,1) = (2,1) + (1,2) = (3,3); (2,1) + (2,1) = (4,2); so a(2)=3.
A381244
Number of regions in the arrangement of hyperplanes corresponding to the nonzero differences of two permutations of order n.
Original entry on oeis.org
1, 1, 2, 12, 3696
Offset: 0
-
def a381244(n): return HyperplaneArrangements(QQ,tuple(f'x{i}' for i in range(n)))([[list(r),0] for p in Permutations(n) for r in Permutations([p[i]-i-1 for i in range(n)]) if vector(r)>0]).n_regions()
A381243
Number of hyperplanes defined by the nonzero differences of two permutations of order n.
Original entry on oeis.org
0, 0, 1, 6, 85, 1370, 30481, 778610, 24409645, 881325366, 36635553601, 1713454403210, 89415912126223, 5143372266050837, 323667807885619744, 22112062644980805684
Offset: 0
A381339
Number of vector differences between two permutations of order n, up to multiplication by nonzero rational numbers and permutations of the components.
Original entry on oeis.org
1, 1, 2, 3, 9, 28, 128, 539, 2651, 13000, 67466, 355381, 1926343, 10590537, 59234734, 335302599
Offset: 0
For n = 3, there are A019589(3) = 5 difference vectors up to permutation of components: (-2, 0, 2), (-2, 1, 1), (-1, -1, 2), (-1, 0, 1), and (0, 0, 0). However, (-2, 0, 2) and (-1, 0, 1) are the same up to a factor 2, and (-2, 1, 1) and (-1, -1, 2) are the same up to negation and reversing the order. Hence, a(3) = 3.
A384035
Number of vector differences between two permutations of order n, up to multiplication by positive rational numbers and permutations of the components.
Original entry on oeis.org
1, 1, 2, 4, 13, 49, 228, 1034, 5133, 25710, 133872, 708976, 3846150, 21170077, 118429072, 670537495
Offset: 0
For n = 3, there are A019589(3) = 5 difference vectors up to permutation of components: (-2, 0, 2), (-2, 1, 1), (-1, -1, 2), (-1, 0, 1), and (0, 0, 0). However, (-2, 0, 2) and (-1, 0, 1) are the same up to a factor 2. Hence, a(3) = 4.
Showing 1-5 of 5 results.
Comments