auto.arima() shows an AICc value of Inf for an ARIMA(1,0,0)(1,0,0) model, while the same model has a finite value using Arima().
The issue here is to do with the checks carried out by auto.arima() in an effort to return a good model. The auto.arima() function does not simply find the model with the lowest AICc value. It also carries out several checks to ensure the model is numerically well-behaved.
While the Arima() function will never return a model with roots inside the unit circle, the auto.arima() function is even stricter and will not select a model with roots close to the unit circle either. The ARIMA(1,0,0)(1,0,0)12 model fitted above has roots almost on the unit circle. This is easily seen by plotting them.
In fact, there are 12 roots with absolute value 1.009, just outside the unit circle (so the inverse roots that are plotted are just inside the circle). Consequently, this model is rejected by auto.arima() because the forecasts will be numerically unstable, and the AICc value is set to Inf to prevent it being selected.
In general, unless you know exactly what you’re doing, it is better to leave auto.arima() to select a model for you. In this case, it comes up with the following model which should forecast well.