Per an idea from Josh in chat, it could be done with a GreaseMonkey style script.
One has been built for this purpose at: http://fosco.com/tab_notifier.user.js
Here's what it looks like (in Firefox):

EDIT:
New version for StackExchange Inbox:
// ==UserScript==
// @name SE Tab Notifier
// @namespace http://fosco.com
// @description Update Tab Title when Inbox has content
// @include http://*.stackexchange.com/*
// @include http://superuser.com/*
// @include http://serverfault.com/*
// @include http://meta.stackoverflow.com/*
// @include http://stackoverflow.com/*
// ==/UserScript==
var script = document.createElement("script");
script.textContent = "(" + grease.toString() + ")()";
document.body.appendChild(script);
function grease()
{
var notifyme = function ()
{
if ($('#portalLink a.unreadCount').is(':visible')) {
var x = $(document).attr('title');
var count = $('#portalLink a.unreadCount').text();
var len = Math.floor(count/10);
if (x.substring(0,len+2) != count + ' ') {
$(document).attr('title',count + ' ' + x);
}
}
};
window.setInterval(notifyme, 1000);
}