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!)
A204095 Numbers whose base 10 digits are a subset of {0, 8}. 11
0, 8, 80, 88, 800, 808, 880, 888, 8000, 8008, 8080, 8088, 8800, 8808, 8880, 8888, 80000, 80008, 80080, 80088, 80800, 80808, 80880, 80888, 88000, 88008, 88080, 88088, 88800, 88808, 88880, 88888, 800000, 800008, 800080, 800088, 800800, 800808, 800880, 800888 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 8 * A007088(n).
MAPLE
f:= proc(n) local L; L:= convert(n, base, 2); add(8*L[i]*10^(i-1), i=1..nops(L)) end proc:
seq(f(n), n=0..100); # Robert Israel, Jul 28 2014
MATHEMATICA
Table[8 FromDigits[IntegerDigits[n, 2]], {n, 0, 39}] (* Alonso del Arte, Jan 10 2012 *)
PROG
(Haskell)
a204095 n = a204095_list !! n
a204095_list = map (* 8) a007088_list
(PARI) a(n)=8*subst(Pol(binary(n)), x, 10);
for(n=0, 20, print1(a(n), ", ")) \\ Felix Fröhlich, Jul 26 2014
CROSSREFS
Sequence in context: A077333 A216997 A062900 * A061477 A069543 A144410
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Jan 10 2012
EXTENSIONS
Definition corrected by M. F. Hasler, Feb 08 2020
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 May 3 08:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)