login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A098948
Numbers where 7 is the only odd decimal digit.
1
7, 27, 47, 67, 70, 72, 74, 76, 77, 78, 87, 207, 227, 247, 267, 270, 272, 274, 276, 277, 278, 287, 407, 427, 447, 467, 470, 472, 474, 476, 477, 478, 487, 607, 627, 647, 667, 670, 672, 674, 676, 677, 678, 687, 700, 702, 704, 706, 707, 708, 720, 722, 724, 726
OFFSET
1,1
COMMENTS
This is a 10-automatic language. - Charles R Greathouse IV, Oct 03 2011
MAPLE
q:= n-> is(select(c-> c::odd, {convert(n, base, 10)[]})={7}):
select(q, [$1..887])[]; # Alois P. Heinz, Jul 27 2021
MATHEMATICA
Select[Range[1000], Union[Select[IntegerDigits[#], OddQ]]=={7}&] (* Harvey P. Dale, May 24 2012 *)
PROG
(Perl) for (0..1000) {
print "$_, " if (/^[024678]*7[024678]*$/)
} # Charles R Greathouse IV, Oct 05 2011
(Python)
def ok(n): return set("13579") & set(str(n)) == {'7'}
print(list(filter(ok, range(727)))) # Michael S. Branicky, Jul 27 2021
CROSSREFS
Sequence in context: A323113 A205861 A215446 * A015873 A344721 A309335
KEYWORD
base,easy,nonn
AUTHOR
Eric Angelini, Oct 21 2004
STATUS
approved