Yes I know of one that can possibly be done in your head , and if modified further can result in truly random numbers take a list of numbers , an ordered list of numbers in base ten cause that would be the easiest to calculate in. Add them up together , the keep only the ones digit place number of that resulting number and then place that on the end of the list and drop off the first digit , and then repeat , this will not produce true random numbers but random enough and depending on the size of the list of numbers that you choose to use , will eventually repeat but for a large initial list will not repeat for a sufficiently large amount of time.
for example if I used just 5 numbers in a list 12345 then the next list would be 2345 and the rightmost digit of 1+2+3+4+5ie 15 or 5 so the list would be 23455 now the one has dropped off and is not used anymore so the next sum adds up to 20 -1 (15+5 minus the one that dropped off) so the next list would be 34559 then 45596 then 55969 then 59694 now here we stop , because we have generated a full seeds worth of digits so initially we had 12345.
For the next seed we got 59694 , now there is a kind of a shortcut that you can also use once a full seed has been calculated, or the shortcut itself could be used, which is you take the last digit , multiply it by 2 and subtract the first digit doubling one digit is easily done in the head, the important thing is to remember all the other digits and their order in the sequence, this will at best though only produce pseudo - random numbers , with some long repeat times the larger the list of numbers that you use, but the initial list must be chosen with care, like for instance don't pick all zeroes as you list or you will have an endless stream of zeroes and well some sets of digits will produce longer repeat cycles than others (but maybe this should be done on paper provided you have a pencil or pen and a sheet of paper handy... :) hope this helps..(modified a bit this makes the start of a very good true random number generator) enjoy...
I hope this is better if not then tell me so :) (I was never very good in English ! :)