Nidificação Sass nth-child

Estou refatorando esses seletores CSS para o Sass:

#romtest .detailed th:nth-child(2),
#romtest .detailed th:nth-child(4),
#romtest .detailed th:nth-child(6),
#romtest .detailed td:nth-child(2),
#romtest .detailed td:nth-child(3),
#romtest .detailed td:nth-child(6),
#romtest .detailed td:nth-child(7),
#romtest .detailed td.last:nth-child(2),
#romtest .detailed td.last:nth-child(4) {
  background:#e5e5e5;
}

... e veio com isso:

#romtest .detailed {
    th:nth-child {
        &(2), &(4), &(6) {
            background:#e5e5e5;
        }
    }
    td:nth-child {
        &(2), &(3), &(6), &(7) {
            background:#e5e5e5;
        }
    }
    td.last:nth-child {
        &(2), &(4) {
            background:#e5e5e5;         
        }
    }
}

Infelizmente isso está jogando um erro:

CSSS inválido depois de "&": esperado "{", era "(2), & (4), & (6) {"

Eu também sei que isso poderia ser melhor porque eu sou:

repetindo a cor de fundorepetindo números - ou seja, (2) e (6)

Como devo refatorar esses seletores?

questionAnswers(2)

yourAnswerToTheQuestion