\dots are slightly different from ordinary least squares regression. Are you sure they are what you want?
dat <- data.frame(
x = c(3, 5, 8, 11, 15, 18, 20, 25, 27, 30),
y = c(2, 4, 7, 10, 17, 23, 29, 45, 59, 73)
)
summary(lm(y~x, data = dat)) -> a
a$coefficients[,1]
#> (Intercept) x
#> -13.543129 2.496489