Well, I can iterate over 3 to 101 and select only the odds using:
(1..50).to_a.map(&:object_id)
or
(1..50).map(&:object_id)
or even like this:
(1..50).to_a.each do |c| p c.object_id end
And the ways to do the same goes on and on...
The question comes to my mind if "A" can have any object id of Integer class, and seems quite random, then why does a number have fixed ones?