Convert excel formula into CIQ correct syntax

I have a formula in Excel:

=LN(B8/100*EXP((18.678-B6/234.5)*(B6/(257.14+B6)))))

which I have converted to CIQ-code like this:

= Math.ln(B8/100*Math.pow(2.718281828459, ((18.678-B6/234.5)*(B6/(257.14+B6)))));

They don't have the same outcome. I expect the error to be in the conversion from the EXP-function in Excel, but I cannot find it.

PS: the Excel EXP function returns the result of the constant e raised to the power of a number