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!)
A262438 Number of digits of hexadecimal representation of n. 2
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,17
COMMENTS
Length of n-th row in A262437.
LINKS
MAPLE
A262438 := proc(n)
if n =0 then
1;
else
1+floor(log[16](n)) ;
end if;
end proc: # R. J. Mathar, Dec 14 2015
PROG
(Haskell)
a262438 = length . a262437_row
(PARI) a(n) = if (n, #digits(n, 16), 1); \\ Michel Marcus, Dec 14 2015
CROSSREFS
Sequence in context: A032545 A231560 A113679 * A044931 A178487 A280560
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 22 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)