Hi Alan,
Ah, a calculus dropout. That explains... 
The equations are ok but stuffed with brackets; this may be causing the problem. One of the reasons I love RPN.
I tried the equation again, and 1mm gives 18.2 AWG; 2mm gives 12.2 AWG.
The steps:
- ln ( diameter/.127)
divide the above by ln(92)
multiply it all by 39
add 36 to the above result.
In RPN:
(diameter in mm on the stack, as input value)
.127
ln
92
ln
/
+- (reverse polarity)
39
*
36
+
(RETURN or END)
It leaves the wire size in AWG on the stack.
Most likely you have made a mistake with the brackets, i.e. correct order of operations. The one you found is a bit easier though (haven't checked yours for accuracy though; my problem has been solved by the equations in my original post
)
BTW, easy to remember: 1.5mm = AWG 15.
Regards,