A107345 From the binary representation of n: binomial(number of zeros, number of blocks of contiguous zeros).
1, 1, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 4, 3, 3, 2, 3, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 5, 4, 6, 3, 6, 3, 3, 2, 6, 3, 1, 1, 3, 1, 1, 1, 4, 3, 3, 2, 3, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 6, 5, 10, 4, 10, 6, 6, 3, 10, 6, 4, 3, 6, 3, 3, 2, 10, 6, 4, 3, 4, 1, 1, 1, 6, 3, 1, 1, 3, 1, 1, 1, 5, 4, 6, 3, 6, 3, 3
Offset: 0
Keywords
Links
Programs
-
Haskell
a107345 n = a007318' (a023416 n) (a087116 n) -- Reinhard Zumkeller, Mar 31 2015
-
Mathematica
f[n_] := Block[{id = IntegerDigits[n, 2]}, Binomial[ Count[id, 0], Floor[(Length@ Split@ id + 1)/2]]]; Table[f@n, {n, 0, 102}] (* Robert G. Wilson v, Apr 01 2008 *)
Comments