Movement using a number table

I know how to move a movieclip

this._x-=1

or if using sinus

 attachMovie("ball,"ball",1)
u=1 
ball.onEnterFrame=function(){
sinus = Math.sin(u*2*3.141593/180)*20;
u++
ball._x = sinus
}

but i have a question
Would it be possible to use actionscript to move a movieclip using a table of numbers
example

table [00,01,02,03,04,08,10,15,16,14,11,09,05,04,03,02,01,00];
so the movieclip would first move ._x to screen position 00 then 01 then 02… and so on up my table of numbers?