I am looking for a complete list of dangerous character names that start with a lowercase letter in Mathematica.
At this moment I know three such names: min , max and lim . These names appear in the LimitsPositioningTokens list, and are treated as operators, at least when they are entered in the FrontEnd with a superscript :
In[3]:= Options[$FrontEnd,LimitsPositioningTokens] Out[3]= {LimitsPositioningTokens->{\[Sum],\[Product],\[Intersection], \[Union],\[UnionPlus],\[Wedge],\[Vee],lim,max,min,\[CirclePlus], \[CircleMinus],\[CircleTimes],\[CircleDot]}}

For example, enter FrontEnd the following (use Ctrl + ^ to create a superscript - this is important!):
In[1]:= max^n+4 (max^n+4)//HoldComplete//FullForm Out[1]= 4 max^n Out[2]//FullForm= HoldComplete[Times[Power[max,n],Plus[4]]]

You see that max^n+4 interpreted as 4*max^n in this case.
Can anyone explain what the LimitsPositioningTokens option really does?
Are there other dangerous characters starting with a lowercase letter in Mathematica?