```r seq(as.integer64(1L), to=11L, length.out=6L) # integer64 # [1] 1 2 3 4 5 6 # c.f. seq(1, to=11, length.out=6) # [1] 1 3 5 7 9 11 ```