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

A099747 Duplicate of A059916.

Original entry on oeis.org

0, 1, 2, 4, 5, 6, 8, 10, 40, 46, 60, 61, 64, 80, 84, 5000
Offset: 1

Views

Author

Keywords

A117383 Positive numbers whose Spanish names do not include repeated letters.

Original entry on oeis.org

1, 2, 3, 4, 10, 11, 12, 15, 80, 100, 1000, 1001, 1002, 1003, 1004, 1011, 1012, 1080, 2000, 3000, 3001, 4000, 11000, 12000, 80000
Offset: 1

Views

Author

Rodolfo Kurchan, Apr 24 2006

Keywords

Crossrefs

Programs

  • Python
    from num2words import num2words as n2w
    def letters(n):
        return "".join(c for c in n2w(n, lang='es') if c.isalpha())
    def ok(n):
        w = letters(n)
        return len(w) == len(set(w))
    print([k for k in range(1, 100000) if ok(k)]) # Michael S. Branicky, Jun 08 2022

A354681 Integers whose names in French contain no letter more than once.

Original entry on oeis.org

-4, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 22, 60, 100, 106, 110
Offset: 1

Views

Author

Paul Duckett, Jun 02 2022

Keywords

Examples

			-4 is named as "moins quatre" (all letters different).
13 is not in the data as "treize" repeats "e".
		

Crossrefs

Cf. A059916 (English), A117383 (Spanish).

Programs

  • Python
    from num2words import num2words as n2w
    def letters(n):
        return "".join(c for c in n2w(n, lang='fr') if c.isalpha())
    def ok(n):
        w = letters(n)
        return len(w) == len(set(w))
    print([k for k in range(-99, 1000) if ok(k)]) # Michael S. Branicky, Jun 08 2022

A216163 Nonnegative integers whose English number-words have the identical number of letters contributing to each represented letter-frequency.

Original entry on oeis.org

0, 1, 2, 4, 5, 6, 8, 10, 19, 21, 40, 44, 46, 59, 60, 61, 64, 80, 84, 140, 152, 166, 251, 405, 468, 504, 661, 864, 1556, 1566, 1655, 1665, 2456, 2466, 2654, 2664, 2686, 4256, 4266, 4652, 4662, 4700, 5000, 5156, 5166, 5651, 5661, 6015, 6155, 6165, 6254, 6264, 6286, 6452, 6462, 6551, 6561, 6682, 7400, 8813, 13808, 15006, 30100, 40400
Offset: 1

Views

Author

Hans Havermann, Sep 02 2012

Keywords

Comments

Sequence members may be classified by type: {f1, f2, f3, ... fn}, representing the number of letters occurring {once, twice, thrice, ... n times}. The smallest representative of some distinct types are...
0 {4}
1 {3}
8 {5}
19 {2,0,2}
21 {3,3}
46 {8}
64 {9}
80 {6}
84 {10}
140 {5,5}
152 {6,6}
468 {7,7}
1556 {5,5,5}
4700 {4,4,4}
5000 {12}
8813 {3,3,3,0,3}
100300 {2,2,2,2,2}
114144 {3,0,3,0,3,3}
124486 {4,4,0,4,4}
131256 {3,3,3,3,3}
202214 {3,0,3,3,3}
250386 {4,4,4,0,4}
334468 {3,3,3,0,3,3}
1000013 {3,3,3}
1030460 {4,4,4,4}
4000414 {3,3,3,3}
7000000 {4,4}
13131434 {3,3,0,0,3,3,3}
21445566 {3,3,3,3,3,3}
24425526 {3,3,3,3,3,0,3}
121236636 {2,2,2,2,2,2,2,2}
131154477 {2,2,2,2,2,2,2,0,0,2}
132244566 {3,3,3,0,3,3,3}
134000589 {3,3,3,3,0,3}

Examples

			19 is in the sequence because two letters contribute to each of the two letter-frequencies of "nineteen": I & T to frequency 1, E & N to frequency 3. 5000 is in the sequence because twelve letters contribute to the only letter-frequency (1) of "five thousand". 3000000000000000013000019000000 is in the sequence because one letter contributes to each of the nine letter-frequencies of "three nonillion thirteen trillion nineteen million": M to frequency 1, H to 2, R to 3, O to 4, T to 5, L to 6, E to 7, I to 8, N to 9.
		

Crossrefs

Cf. A059916 (a small subset)

A244008 Nonnegative integers with no repeated letters in their combined English decimal digit names.

Original entry on oeis.org

0, 1, 2, 4, 5, 6, 8, 16, 25, 26, 46, 48, 52, 60, 61, 62, 64, 84
Offset: 1

Views

Author

Rick L. Shepherd, Jun 17 2014

Keywords

Examples

			The first multi-digit term is 16 since "one" and "six" taken together contain no duplicate letters. Although "one" itself contains no duplicate letters, by definition 11 is not a term since duplicate digits introduce repeated letters.
		

Crossrefs

Subsequence of A010784, A052405, A052419, and A007095.
Cf. A059916.

Programs

  • PARI
    is(n)=my(d=apply(k->[25,9,40,64,26,7,4,64,37,64][k+1], digits(n)),t); for(i=1,#d, if(bitand(t,d[i]), return(0)); t=bitor(t,d[i])); t<64 \\ Charles R Greathouse IV, Aug 18 2022
  • Python
    m = ["zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"]
    def nr(w): return len(w) == len(set(w))
    afull = [k for k in range(988) if nr("".join(m[int(d)] for d in str(k)))]
    print(afull) # Michael S. Branicky, Aug 18 2022
    
Showing 1-5 of 5 results.