A297569 Number of nonisomorphic proper colorings of partition star graph using five colors.
5, 20, 50, 80, 100, 320, 320, 175, 800, 680, 1280, 1280, 280, 1600, 2720, 3200, 5120, 5120, 5120, 420, 2800, 6800, 4080, 6400, 20480, 10400, 12800, 20480, 20480, 20480, 600, 4480, 13600, 16320, 11200, 51200, 43520, 41600, 25600, 81920, 81920, 51200, 81920, 81920, 81920, 825, 6720, 23800, 40800, 19380, 17920, 102400, 174080, 104000, 166400, 44800, 204800, 174080, 327680, 164480, 102400, 327680, 327680, 204800, 327680, 327680
Offset: 0
Examples
Rows are: 5; 20, 50, 80; 100, 320, 320; 175, 800, 680, 1280, 1280; 280, 1600, 2720, 3200, 5120, 5120, 5120;
Links
- Marko Riedel et al., Orbital chromatic polynomials
Programs
-
Maple
b:= (n, i)-> `if`(n=0, [5], `if`(i<1, [], [seq(map(x-> x* binomial(4^i+j-1, j), b(n-i*j, i-1))[], j=0..n/i)])): T:= n-> b(n$2)[]: seq(T(n), n=0..10); # Alois P. Heinz, Jan 14 2018
-
Mathematica
b[n_, i_] := If[n == 0, {5}, If[i<1, {}, Table[Map[Function[x, x*Binomial[ 4^i + j - 1, j]], b[n - i*j, i - 1]], {j, 0, n/i}]] // Flatten]; T[n_] := b[n, n]; Table[T[n], {n, 0, 10}] // Flatten (* Jean-François Alcover, Jan 17 2018, after Alois P. Heinz *)
Formula
For a partition lambda we have the OCP: k Product_{p^v in lambda} C((k-1)^p+v-1, v). Here we have k=5.
Comments