It appears that WordPress supports no customizations to ordered lists.
The HTML attributes "type" and "start" are stripped from any code I enter, e.g.:
<br />
<ol type="A" start="3"></p>
<li>xxxx</li>
<li>yyyy</li>
<p>
would have the "type" and "start" attributes stripped.
I realize that "type" and "start" are deprecated attributes, so I tried the list style CSS properties, e.g.:
<br />
<ol style="list-style-type: upper-alpha";</p>
<li>xxxx</li>
<li>yyyy</li>
<p>
These all work beautifully in blogger and other environments and I'm at a loss to understand why these attributes and CSS properties would be stripped in WordPress.
More information:
http://w3schools.com/css/pr_list-style-type.asp
http://w3schools.com/tags/tag_ol.asp