(Skip this paragraph if you know FGITW) In the starting phase of a good question, several similar answers show up in a very short frame of time. One of them will happen to get the first upvote, and following votes may be influenced by that fact since some people don't have the time or muse to read all answers and restrict themselves to upvoting the first upvoted correct answer they find. This is known as "the fastest gun in the west".
I wonder, would displaying not the upvote-count itself but it's base 4 logarithm, rounded randomly&, decrease this problem? I picked 4 as the base because 2 would still provide too large a chance for the first upvote to show up as such, while 4 would give it a 75% chance of still being displayed as not-yet-upvoted, giving the other answers a fair chance. An answer with at least 4 upvotes will be displayed with at least a 1, 16 upvotes (and therefore a really good answer) with a 2, and even ridiculously upvoted ~400 times answers (which usually involve freehand circles or at least a very appropriate XKCD link) would get a 4 to 5.
Clicking the number should still reveal the real vote count (after reaching the rep needed unlock this), I assume$ high-rep users to vote responsibly anyway.
&e.g. take the fractional part of log4(nupvotes) as the probability for rounding up
$ yes, I am naive, thank you all the same
edit Taking Grace's critique into account, the fractional part of the answer-"score" should be displayed after a cast vote can no longer be undone to provide feedback, and maybe the rounding should be made real instead of random after that cast.
Also note that base 4 was just a first guess, maybe base 3 or base 2 with a preceding decrease or similar would be better.
edit2 Base 2 seems fairer and to be correct and avoid $-\infty$ for zero votes, the correct formula would be
with L := log2((abs(votescore)+1) and r a random number in [0,1]
score = sign(votescore) * { floor(L) + ( r > frac(L) ? 0 : 1) }
Here's an ugly table:
|votescore| || |score,min| || chance of rounding up
1 || 1 || 0.00 %
2 || 1+ || 58.50 %
3 || 2 || 0.00 %
4 || 2 || 32.19 %
5 || 2+ || 58.50 %
6 || 2+ || 80.74 %
7 || 3 || 0.00 %
8 || 3 || 16.99 %
9 || 3 || 32.19 %
10 || 3 || 45.94 %
11 || 3+ || 58.50 %
12 || 3+ || 70.04 %
13 || 3+ || 80.74 %
14 || 3+ || 90.69 %
15 || 4 || 0.00 %
16 || 4 || 8.75 %
+ indicates a 50+% chance of actually rounding up