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!)
A248910 Numbers with no zeros in base-6 representation. 7
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 43, 44, 45, 46, 47, 49, 50, 51, 52, 53, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 67, 68, 69, 70, 71, 79, 80, 81, 82, 83, 85, 86, 87, 88, 89, 91, 92 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Different from A039215, A047253, A184522, A187390, A194386.
LINKS
Wikipedia, Senary
PROG
(Haskell)
a248910 n = a248910_list !! (n-1)
a248910_list = iterate f 1 where
f x = 1 + if r < 5 then x else 6 * f x' where (x', r) = divMod x 6
(PARI) isok(m) = vecmin(digits(m, 6)) > 0; \\ Michel Marcus, Jan 23 2022
CROSSREFS
Cf. A007092, A100969 (subsequence).
Zeroless numbers in some other bases <= 10: A000042 (base 2), A032924 (base 3), A023705 (base 4), A255805 (base 8), A255808 (base 9), A052382 (base 10).
Sequence in context: A187390 A039215 A047253 * A254278 A204878 A037918
KEYWORD
nonn,base,easy
AUTHOR
Reinhard Zumkeller, Mar 08 2015
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 8 09:02 EDT 2024. Contains 372332 sequences. (Running on oeis4.)