First of all:
I'm not sure if this was already known, but for completeness sake, I thought I'd mention it.
An important part to notice is that the API predates generics (and more importantly) auto-boxing by quite a bit (the collections API was introduced in Java 1.2 and auto-boxing was introduced in Java 5).
So when they first designed the API, there was absolutely no way to confuse the two. Even if your List contained Integer objects, it's simple: if you call the method with a primitive argument type (int), then it's the index, if you pass in an Object (even if it's Integer), then you pass in the object to remove.
Granted, it's still not the greatest idea (but quite a few Java APIs are ... less than perfect), but the chance for confusion was much lower back then.
The increased chance of confusion only exists since the int/Integer barrier became less visible thanks to auto-boxing and auto-unboxing.
Sidenote: an important "feature" of the collections API is "short names for commonly used methods". The previous "solution" of Vector/Enumeration had notoriously long names for pretty common operations:
Vector.elementAt() vs. List.get()
Vector.addElement() vs. Collection.add()
Enumeration.hasMoreElements()/nextElement() vs. Iterator.hasNext()/next()
Vector.removeElement() vs. Collection.remove()
Vector.removeElementAt() vs. List.remove(int)
And the last one are where they probably went a bit too far.
List<Integer>, the appropriate way to remove an int in the list is to useremove(Integer.valueOf(number)). – Genzer Aug 2 '11 at 13:28