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-3 of 3 results.

A121377 ASCII codes for decimal digits.

Original entry on oeis.org

48, 49, 50, 51, 52, 53, 54, 55, 56, 57
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 25 2006

Keywords

Examples

			BIN: 110000, 110001, 110010, 110011, 110100, 110101, 110110, 110111, 111000, 111001;
OCT: 60, 61, 62, 63, 64, 65, 66, 67, 70, 71;
HEX: 30, 31, 32, 33, 34, 35, 36, 37, 38, 39.
		

Crossrefs

Cf. A121378.

Programs

Formula

a(n) = A121378(n) - 192.

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 *)

A298728 EBCDIC codes for upper case letters.

Original entry on oeis.org

193, 194, 195, 196, 197, 198, 199, 200, 201, 209, 210, 211, 212, 213, 214, 215, 216, 217, 226, 227, 228, 229, 230, 231, 232, 233
Offset: 1

Views

Author

Yohei Furutono, Jan 25 2018

Keywords

Comments

Extended Binary Coded Decimal Interchange Code.

Examples

			Hexadecimal values: C1, C2, C3, C4, C5, C6, C7, C8, C9, D1, D2, D3, D4, D5, D6, D7, D8, D9, E2, E3, E4, E5, E6, E7, E8, E9.
For example, 'A' is C1, 'B' is C2, ..., 'Z' is E9.
		

Crossrefs

Programs

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