Identifier
- St000826: Binary words ⟶ ℤ
Values
0 => 1
1 => 7
00 => 2
01 => 5
10 => 8
11 => 16
000 => 3
001 => 19
010 => 6
011 => 14
100 => 9
101 => 9
110 => 17
111 => 17
0000 => 4
0001 => 12
0010 => 20
0011 => 20
0100 => 7
0101 => 7
0110 => 15
0111 => 15
1000 => 10
1001 => 23
1010 => 10
1011 => 111
1100 => 18
1101 => 18
1110 => 18
1111 => 106
00000 => 5
00001 => 26
00010 => 13
00011 => 13
00100 => 21
00101 => 21
00110 => 21
00111 => 34
01000 => 8
01001 => 109
01010 => 8
01011 => 29
01100 => 16
01101 => 16
01110 => 16
01111 => 104
10000 => 11
10001 => 24
10010 => 24
10011 => 24
10100 => 11
10101 => 11
10110 => 112
10111 => 112
11000 => 19
11001 => 32
11010 => 19
11011 => 32
11100 => 19
11101 => 19
11110 => 107
11111 => 107
000000 => 6
000001 => 27
000010 => 27
000011 => 27
000100 => 14
000101 => 14
000110 => 14
000111 => 102
001000 => 22
001001 => 115
001010 => 22
001011 => 14
001100 => 22
001101 => 22
001110 => 35
001111 => 35
010000 => 9
010001 => 22
010010 => 110
010011 => 110
010100 => 9
010101 => 9
010110 => 30
010111 => 30
011000 => 17
011001 => 30
011010 => 17
011011 => 92
011100 => 17
011101 => 17
011110 => 105
011111 => 105
100000 => 12
100001 => 118
100010 => 25
100011 => 25
100100 => 25
100101 => 25
100110 => 25
>>> Load all 1200 entries. <<<
search for individual values
searching the database for the individual values of this statistic
/
search for generating function
searching the database for statistics with the same generating function
Description
The stopping time of the decimal representation of the binary word for the 3x+1 problem.
Prepend $1$ to the binary word, interpret it as a positive number, and count the number of halving and tripling steps needed to reach $1$.
Prepend $1$ to the binary word, interpret it as a positive number, and count the number of halving and tripling steps needed to reach $1$.
References
Code
def statistic(w):
return collatz(Integer("0b1" + str(w)))
@cached_function
def collatz(n):
if n == 1:
return 0
elif is_even(n):
return 1+collatz(n//2)
else:
return 1+collatz(3*n+1)
Created
May 30, 2017 at 22:00 by Martin Rubey
Updated
May 30, 2017 at 22:00 by Martin Rubey
searching the database
Sorry, this statistic was not found in the database
or
add this statistic to the database – it's very simple and we need your support!