A302295 a(n) is the period of the binary expansion of n (with leading zeros allowed).
1, 1, 2, 1, 3, 2, 3, 1, 4, 3, 2, 4, 4, 4, 4, 1, 5, 4, 3, 5, 5, 2, 5, 5, 5, 5, 5, 3, 5, 5, 5, 1, 6, 5, 4, 6, 3, 6, 6, 6, 6, 6, 2, 6, 6, 3, 6, 6, 6, 6, 6, 4, 6, 6, 3, 6, 6, 6, 6, 6, 6, 6, 6, 1, 7, 6, 5, 7, 4, 7, 7, 7, 7, 3, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 2, 7
Offset: 0
Examples
The first terms, alongside the binary expansion of n with periodic part in parentheses, are: n a(n) bin(n) -- ---- ------ 0 1 (0) 1 1 (1) 2 2 (10) 3 1 (1)(1) 4 3 (100) 5 2 (01)(01) 6 3 (110) 7 1 (1)(1)(1) 8 4 (1000) 9 3 (001)(001) 10 2 (10)(10) 11 4 (1011) 12 4 (1100) 13 4 (1101) 14 4 (1110) 15 1 (1)(1)(1)(1) 16 5 (10000) 17 4 (0001)(0001) 18 3 (10)(10) 19 5 (10011) 20 5 (10100)
Links
Programs
-
PARI
a(n) = for (k=1, oo, if (#Set(digits(n, 2^k))<=1, return (k)))
Comments