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.

A098946 Numbers where 3 is the only odd decimal digit.

Original entry on oeis.org

3, 23, 30, 32, 33, 34, 36, 38, 43, 63, 83, 203, 223, 230, 232, 233, 234, 236, 238, 243, 263, 283, 300, 302, 303, 304, 306, 308, 320, 322, 323, 324, 326, 328, 330, 332, 333, 334, 336, 338, 340, 342, 343, 344, 346, 348, 360, 362, 363, 364, 366, 368, 380, 382
Offset: 1

Views

Author

Eric Angelini, Oct 21 2004

Keywords

Comments

This is a regular language in base 10. [Charles R Greathouse IV, Oct 05 2011]

Programs

  • Maple
    S:= [0,2,3,4,6,8]:
    f:= proc(n) local L,i;
      L:= convert(n,base,6);
      if member(2,L) then
        add(S[L[i]+1]*10^(i-1),i=1..nops(L))
      fi
    end proc:
    map(f, [$1..200]); # Robert Israel, Feb 05 2019
  • Mathematica
    Select[Range[400],Union[Select[IntegerDigits[#],OddQ]]=={3}&] (* Harvey P. Dale, May 05 2017 *)
  • Perl
    for (0..1000) {
        print "$_, " if (/^[023468]*3[023468]*$/)
    } # Charles R Greathouse IV, Oct 05 2011