A117845 "hello, world" characters encoded in ASCII.
104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100
Offset: 0
References
- Brian W. Kernighan and Dennis M. Ritchie, The C programming language, 1978.
Links
- Wikipedia, Hello world program.
Programs
-
Mathematica
ToCharacterCode["hello, world"] (* Harvey P. Dale, Apr 26 2016 *)
-
Python
print([ord(c) for c in "hello, world"]) # Michael S. Branicky, Aug 10 2022
Formula
0 <= n < 12, a(n) = ASCII code of character at position n in "hello, world"