cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A111313 Character codes of the string "The On-Line Encyclopedia of Integer Sequences".

Original entry on oeis.org

84, 104, 101, 32, 79, 110, 45, 76, 105, 110, 101, 32, 69, 110, 99, 121, 99, 108, 111, 112, 101, 100, 105, 97, 32, 111, 102, 32, 73, 110, 116, 101, 103, 101, 114, 32, 83, 101, 113, 117, 101, 110, 99, 101, 115
Offset: 1

Views

Author

Zak Seidov, Nov 03 2005

Keywords

Crossrefs

Programs

  • Mathematica
    ToCharacterCode["The On-Line Encyclopedia of Integer Sequences"]
  • PARI
    A111313=Vecsmall("The On-Line Encyclopedia of Integer Sequences") \\ M. F. Hasler, Nov 08 2009
    
  • Python
    print([ord(c) for c in "The On-Line Encyclopedia of Integer Sequences"]) # Michael S. Branicky, Aug 17 2022

A298720 EBCDIC codes for lower case letters.

Original entry on oeis.org

129, 130, 131, 132, 133, 134, 135, 136, 137, 145, 146, 147, 148, 149, 150, 151, 152, 153, 162, 163, 164, 165, 166, 167, 168, 169
Offset: 1

Views

Author

Yohei Furutono, Jan 25 2018

Keywords

Comments

Extended Binary Coded Decimal Interchange Code.

Examples

			Corresponding hexadecimal values: 81, 82, 83, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 95, 96, 97, 98, 99, A2, A3, A4, A5, A6, A7, A8, A9.
For example, 'a' is 81, 'b' is 82, ..., 'z' is A9.
		

Crossrefs

Programs

  • Mathematica
    With[{r = Range@ 9}, Flatten@ {2^7 + {r, 2^4 + r, 2^5 + Rest[r]}}] (* Michael De Vlieger, Jan 28 2018 *)
Showing 1-2 of 2 results.