A381462 Limiting sequence of the possible number of inversions in stable configurations of 3^n-1 chips in a chip firing-game directed 3-ary tree resulting from a permutation-based strategy of firing chips.
0, 1, 3, 4, 5, 9, 10, 12, 13, 14, 15, 16, 17, 18, 27, 28, 30, 31, 32, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 81, 82, 84, 85, 86, 90, 91, 93, 94, 95, 96, 97, 98, 99, 108, 109, 111, 112, 113, 117, 118, 120, 121, 122, 123, 124, 125
Offset: 1
Keywords
Links
- Wikipedia, Chip-firing game
- Ryota Inagaki, Tanya Khovanova, and Austin Luo, Permutation-based Strategies for Labeled Chip-Firing on k-ary Trees, arXiv:2503.09577 [math.CO], 2025.
Programs
-
Python
k = 3 s = set() for i in range(2): for j in range(3): for l in range(4): for m in range(5): for n in range(6): s.add(((k ** 5 - k ** (5-n)) + (k ** 4 - k ** (4-m)) + (k ** 3 - k ** (3-l)) + (k ** 2 - k ** (2-j))+ (k ** 1 - k ** (1-i)))// (k-1)) l = list(s) l.sort() print(l)
Comments