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!)
A245852 Powers of 8 without the digit '0' in their decimal expansion. 3
1, 8, 64, 512, 32768, 262144, 16777216, 134217728, 8589934592, 68719476736, 549755813888, 2251799813685248, 4722366482869645213696, 2417851639229258349412352 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjectured to be finite.
LINKS
MATHEMATICA
Select[8^Range[0, 2*10^5], DigitCount[#, 10, 0]==0 &]
PROG
(Magma) [8^n: n in [0..3*10^4] | not 0 in Intseq(8^n)];
(Python)
from itertools import count, islice
def A245852_gen(): # generator of terms
return filter(lambda n:not '0' in str(n), (1<<3*n for n in count(0)))
A245852_list = list(islice(A245852_gen(), 10)) # Chai Wah Wu, Nov 10 2022
CROSSREFS
Subsequence of A001018.
Cf. similar sequences listed in A245853.
Sequence in context: A046252 A074113 A074116 * A033144 A238300 A344271
KEYWORD
nonn,base
AUTHOR
Vincenzo Librandi, Aug 04 2014
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)