A good idea about magic numbers is to make them into constants and put them prominently in a commented section at the beginning of the code, so that the poor bastard that has to modify your code does not have to discover why you decided that the array was to have exactly 63 elements.

Now don't tell me that your programming language does not allow constants. Even Perl does it now.