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!)
A190311 Number of nonzero digits when writing n in base where place values are positive cubes, cf. A000433. 3
0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,10
COMMENTS
For n > 0: a(A000578(n)) = 1; for n > 1: a(A001093(n)) = 2;
a(n) <= A048766(n).
LINKS
PROG
(Haskell)
a190311 n = g n $ reverse $ takeWhile (<= n) $ tail a000578_list where
g _ [] = 0
g m (x:xs) | x > m = g m xs
| otherwise = signum m' + g r xs where (m', r) = divMod m x
CROSSREFS
Sequence in context: A037815 A347622 A297034 * A117005 A263204 A194322
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, May 08 2011
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 18 11:38 EDT 2024. Contains 371779 sequences. (Running on oeis4.)