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!)
A094010 Least number k such that k! in binary representation has n consecutive nontrivial zeros. 1
6, 7, 9, 11, 15, 19, 40, 54, 38, 67, 63, 56, 37, 69, 352, 236, 258, 600, 1234, 979, 901, 3384, 2268, 4675, 5087, 5820, 3184, 12294, 41082, 25557 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
Eliminate the trailing (least significant) trivial zeros by dividing n! by the Sum_{e=1..max) Floor(n/2^e), max is the first exponent where 2^e >= n. See A011371.
EXAMPLE
a(4)=11 because 11!_d = 10011000010001010100000000_b. The last zeros are trivial.
MATHEMATICA
helper[b_][a : {b_, ___}] := Length[a]; helper[b_][a_List] := 0; maxConsecutiveCount[m_List, x_] := Max[helper[x] /@ Split[m]] (from Dr. Bob drbob(AT)bigfoot.com Apr 20 2004)
a = Table[0, {30}]; Do[ b = maxConsecutiveCount[ IntegerDigits[ n! / 2^IntegerExponent[n!, 2], 2], 0]; If[ a[[b]] == 0, a[[b]] = n; Print[b, " = ", n]], {n, 16500}]; a
CROSSREFS
Sequence in context: A074898 A258153 A175221 * A100348 A240882 A241266
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Apr 20 2004
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 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)