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!)
A124908 a(n) = least integer j >= 0 such that n = floor((2^j)/(5^k)) for some integer k >= 0. 3
0, 1, 4, 2, 7, 5, 33, 3, 38, 8, 36, 6, 13, 34, 55, 4, 25, 39, 60, 9, 23, 37, 44, 58, 7, 14, 28, 35, 49, 56, 70, 5, 19, 26, 33, 40, 54, 61, 68, 10, 17, 24, 31, 103, 38, 45, 52, 59, 66, 73, 8, 15, 22, 29, 101, 36, 43, 115, 50, 57, 64, 136, 71, 6, 13, 85, 20, 27, 99, 34, 106, 41, 48 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The k-sequence is A124916.
LINKS
FORMULA
a(2^j) = j. - Robert Israel, Jul 05 2018
EXAMPLE
1 = floor(2^0/5^0), 2 = floor(2^1/5^0), 3 = floor(2^4/5^1), 4 = floor(2^2/5^0), ...,
so j-sequence = (0,1,4,2,...); k-sequence = (0,0,1,0,...).
MAPLE
f:= proc(n) local k;
if n = 2^ilog2(n) then return ilog2(n) fi;
for k from 1 do if ilog2(n*5^k) <> ilog2((n+1)*5^k) then return ilog2((n+1)*5^k) fi od
end proc:
map(f, [$1..100]); # Robert Israel, Jul 05 2018
CROSSREFS
Cf. A124916.
Sequence in context: A271479 A259927 A002560 * A260593 A143370 A367832
KEYWORD
nonn,look
AUTHOR
Clark Kimberling, Nov 12 2006
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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)