I'm having a very simple but nasty problem with mathematica:
I need/want to enter symbols using a leading zero
\[alpha]^0123
or even simpler just
mysymbol[0123]
which I then transform to my internal representation
(using the Notation package and IntegerDigits[] or Characters[])
==> myrep[{0,1,2,3}]
everything works fine for input without a leading 0.
BUT WHATEVER I TRY (Unevaluated[] or Hold[]), mathematica (it's overarching evaluator?) will transform the Integer
0123 => 123
so the 0 will be missing from my list
Of course, I could avoid the problem by requiring quotes or commas for the input, but that's rather unpretty!
ANY IDEAS?