Python/Maths/3n+1.py

19 lines
474 B
Python
Raw Normal View History

def main():
def n31(a):# a = initial number
c = 0
l = [a]
while a != 1:
if a % 2 == 0:#if even divide it by 2
a = a // 2
elif a % 2 == 1:#if odd 3n+1
a = 3*a +1
c += 1#counter
l += [a]
print(a)#optional print
print("It took {0} steps.".format(c))#optional finish
return l , c
print(n31(43))
if __name__ == '__main__':
main()