Interpolating logarithmic vacuum sensor table

Nothing wrong as far as I can see. Except normally pinMode() would be in setup() not loop(). But all pins default to INPUT anyway, so not really needed. Would be good to give pin A0 a name:

#define PRESSURE_SENSOR A0

then you can use analogRead(PRESSURE_SENSOR).