There's some ways like:
<ion-col *ngFor='#menu of menus; #i = index' class='cell-{{i}}'> // Not tested, i think it should work
But i would recommend you just add the class to the menu item in the array and use it with ngClass:
<ion-col *ngFor='#menu of menus' [ngClass]='menu.backgroundColor'>