I have to paint graph

We have three colors. The constraint is that there are no three consecutive nodes of the same color.
And my idea is:
All ways to paint is $3^7$
I'm going to count following situations:
- Exactly $7$ nodes have the same color - it is three possibilities.
- Exactly $6$: $7 \times 3 \times 2$
- Exactly $5$: $7 \times 3 \times 2$
- Exactly $4$: $5(3 \times 2 \times 1+3 \times 2 \times 2 )$
- Exactly $3$: $5 (3 \times 2 \times 2 + 3 \times 2 \times 3 + 3 \times 2 \times 2 + 3 \times 2 \times 2 + 3 \times 2 \times 2 + 3 \times 2 \times 3 ) $
Finally it yields: $$3^7 - (1)+(2)+(3)+(4)+(5) = 1548$$
Is it correct? Maybe somebody has another approach?
That number is not going to be correct: it counts e.g.
XXXYZZZtwice andXXXXYYY3 times. It also fails a check: if we rotate a valid color combination, we always obtain a distinct valid color combination. The Orbit-Stabilizer Theorem therefore implies the number will be divisible by $7$.To be honest, if I was going to answer this question, I would just plug it into a computer. Here's some GAP code:
which gives $1134$ colorings.
But if we really want to do it by hand, it can be done. We begin with all $3^7$ colorings.
Exactly one color: we exclude $3$ color combinations.
Exactly two colors: The partitions of $7$ into $2$ parts are $(4,3)$, $(5,2)$, $(6,1)$.
Case 43: There are $3 \times 2=6$ choices for these colors, and once chosen they can be arranged as
XXXXYYY,XXXYXYY,XXXYYXYor one of their cyclic rotations. So we exclude $6 \times 3 \times 7=126$ possibilities here.Case 52: We have structures
XXXXXYY,XXXXYXYandXXXYXXY. There's $3 \times 2=6$ ways to choose the colors, and $7$ rotations. Thus giving $3 \times 6 \times 7=126$ possibilities here.Case 61: We have the structure
XXXXXXY. There's $3 \times 2=6$ ways to choose the colors, and $7$ rotations. Thus giving $6 \times 7=42$ possibilities here.Exactly three colors: The partitions of $7$ into $3$ parts are $(3,2,2)$, $(3,3,1)$, $(4,2,1)$, and $(5,1,1)$. So we do the bookkeeping:
Case 322: We have the structure
XXX----. There are $3$ ways to choose the colors (since theYs andZs are equinumerous), and $\binom{4}{2}$ ways to assign theYs andZs, and $7$ rotations. Thus giving $3 \times \binom{4}{2} \times 7=126$ possibilities here.Case 331: We have structures
XXXYYYZ,XXXYYZYandXXXYZYY. There's $3!$ ways to choose the colors, and $7$ rotations. Thus giving $3 \times 3! \times 7=126$ possibilities here.Case 421: We have structures
XXXXYYZ,XXXXYZY,XXXXZYY,XXXYXYZ,XXXYXZY,XXXXZYYXXXYYXZ,XXXYZXY,XXXZYXY. There's $3!$ ways to choose the colors, and $7$ rotations. Thus giving $9 \times 3! \times 7=378$ possibilities here.Case 511: We have structures
XXXXXYZ,XXXXYXZ,XXXYXXZ. There's $3!$ ways to choose the colors, and $7$ rotations. Thus giving $3 \times 3! \times 7=126$ possibilities here.Finally, we do the arithmetic: $$3^7-3-(126+126+42)-(126+126+378+126)=1134$$ agreeing with the computational result.