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.

A087096 Duplicate of A072959.

Original entry on oeis.org

515904, 11318, 15216, 10799546, 129618, 125258, 14118, 10211981, 2839691
Offset: 1

Views

Author

Keywords

A102082 Number of times the n-th letter in an infinitely repeating English alphabet appears in the US English name for the number n.

Original entry on oeis.org

0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 3, 1, 1, 1
Offset: 0

Views

Author

Jeremy Ballard (gtg056b(AT)prism.gatech.edu), Feb 13 2005

Keywords

Examples

			a(5) = 1 since letter 5 = e appears once in "five".
a(20) = 2 since letter 20 = t appears twice in "twenty".
a(34) = 1 since letter 34 = h appears once in "thirty four".
a(105) = 0 since letter 105 = a does not appear in "one hundred five".
a,b,c,... z, a, b, ... .
1,2,3,...26,27,28, ... .
		

Crossrefs

Programs

  • Python
    from num2words import num2words
    def a(n): return num2words(n).replace(" and", "").count(chr(96+n%26))
    print([a(n) for n in range(87)]) # Michael S. Branicky, Jul 15 2022

Extensions

Name clarified, a(0) inserted, and a(34) and beyond from Michael S. Branicky, Jul 15 2022

A073427 Roman numerals for n evaluated as if in Sallows' base 27.

Original entry on oeis.org

9, 252, 6813, 265, 22, 603, 16290, 439839, 267, 24, 657, 17748, 479205, 17761, 670, 18099, 488682, 13194423, 17763, 672, 18153, 490140, 13233789, 490153, 18166, 490491, 13243266, 357568191, 490155, 18168, 490545, 13244724, 357607557
Offset: 1

Views

Author

Michael Joseph Halm, Aug 23 2002

Keywords

Examples

			a(1) = 18 because 18 is the value of "I" in Sallows' base 27.
		

References

  • M. J. Halm, Sequences (Re)discovered, Mpossibilities 81 (Aug. 2002).

Crossrefs

Cf. A072959.
Showing 1-3 of 3 results.