This could be in technical, but it does have a "psychological" aspect too so I put it in the general discussion forum.
I have written a set of bash functions to handle bitcoin addresses: https://github.com/grondilu/bitcoin-bash-tools. I added a few functions to turn a private key into a bunch of english words, inspired from RFC-1751.
My aim with this is to help people memorizing at least one bitcoin private key. Such a key could be used in case the FBI threatens to seize your computer, if you want an extremely low tech solution to hoard bitcoins, if you don't trust any physical support, or whatever ...
I have no idea if it is easy or even possible to memorize 27 english words but I guess it should if one uses a method such as the [url=http://en.wikipedia.org/wiki/Method_of_loci]loci method[/url]
Here is an example of a generated address. You'll recognize the public key, the private key in WIF format, the 27 english words and the key in openssl's PEM format.
[code]
1ArPXGu8H3PhKduTamJ5Dj5uPtdpubFuaA, 5JUL6oXMMrgo4MC31oWySDpdH65qLuSNaCdV97i3DekWPyRrJtU
THE BLOT SET TWIT BARE LEER WAGE LILT LIND CORK GOAL OFT REAR VOTE FLEW
WAD KEYS GAVE SEES WAGE EAR YOGA VAST POT BIRD FAKE BEE
-----BEGIN EC PARAMETERS-----
BgUrgQQACg==
-----END EC PARAMETERS-----
-----BEGIN EC PRIVATE KEY-----
MHQCAQEEIFZh3PHqWrJ6+vNfmtRtLtmz1kFEP0yihsf14g//ecNMoAcGBSuBBAAK
oUQDQgAEmblPqTIy9lhU5U/UW97j/FLFYra5VSol4AX1avdVitR5n6pxcvyAB4BX
/HjeTsZZdxBK127h9zVk0N4Df9dxzw==
-----END EC PRIVATE KEY-----
Notice that, conveniently enough, the leading 5 in the WIF format makes the sentence often start with 'THE'.
If you have other ideas about how to memorize a private key, please share.[/code]