A320036 a(n) is the number of integer partitions of n with largest part <= 7 for which the index of the seaweed algebra formed by the integer partition paired with its weight is 0.
1, 1, 1, 2, 3, 3, 5, 7, 8, 8, 8, 12, 14, 13, 11, 16, 16, 16, 17, 18, 18, 20, 16, 21, 20, 19, 16, 17, 19, 15, 18, 15, 19, 12, 17, 14, 20, 11, 17, 10, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7, 19, 9, 18, 7, 19, 9, 17, 7, 20, 9, 17, 7
Offset: 1
Keywords
Links
- V. Coll, A. Mayers, N. Mayers, Statistics on integer partitions arising from seaweed algebras, arXiv preprint arXiv:1809.09271 [math.CO], 2018.
- V. Dergachev, A. Kirillov, Index of Lie algebras of seaweed type, J. Lie Theory 10 (2) (2000) 331-343.
- Index entries for linear recurrences with constant coefficients, signature (0, -1, 0, 0, 0, 1, 0, 1).
Programs
-
Mathematica
a[n_] := If[n <= 40, {1, 1, 1, 2, 3, 3, 5, 7, 8, 8, 8, 12, 14, 13, 11, 16, 16, 16, 17, 18, 18, 20, 16, 21, 20, 19, 16, 17, 19, 15, 18, 15, 19, 12, 17, 14, 20, 11, 17, 10}[[n]], Switch[Mod[n, 12], 1|5|9, 7, 2, 20, 3|7|11, 9, 0|4, 17, 6|10, 19, 8, 18]]; Array[a, 125] (* Jean-François Alcover, Dec 08 2018 *)
Formula
For n > 40: a(n)=7 if 1,5,9 == n (mod 12), a(n)=20 if 2 == n (mod 12), a(n)=9 if 3,7,11 == n (mod 12), a(n)=17 if 0,4 == n (mod 12), a(n)=19 if 6,10 == n (mod 12), a(n)=18 if 8 == n (mod 12).
Extensions
Missing term a(41)=7 inserted by Jean-François Alcover, Dec 08 2018
Comments