The classic string "Hello world!" can be translated to list of characters with ascii-codes:
[72; 101; 108; 108; 111; 32; 87; 111; 114; 108; 100; 33]
Is there a mathematical function to generate this sequence of numbers (without explicitly enumerating them)?