login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A043521 Numbers having one 8 in base 10. 12
8, 18, 28, 38, 48, 58, 68, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 98, 108, 118, 128, 138, 148, 158, 168, 178, 180, 181, 182, 183, 184, 185, 186, 187, 189, 198, 208, 218, 228, 238, 248, 258, 268, 278, 280, 281, 282, 283, 284, 285, 286, 287, 289, 298, 308, 318 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Enrique Pérez Herrero, Table of n, a(n) for n = 1..2000
MATHEMATICA
Select[Range[300], DigitCount[#, 10, 8]==1&] (* Harvey P. Dale, Jan 06 2012 *)
PROG
(PARI) is(n)=my(d=digits(n)); sum(i=1, #d, d[i]==8)==1 \\ Charles R Greathouse IV, Feb 12 2017
(Python)
def ok(n): return str(n).count('8') == 1
print(list(filter(ok, range(320)))) # Michael S. Branicky, Aug 18 2021
CROSSREFS
Subsequence of A011538.
Sequence in context: A248015 A011538 A283611 * A277595 A017365 A352735
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 16:35 EDT 2024. Contains 371749 sequences. (Running on oeis4.)