blob: 465c419317619a8ee534c219e5f024510216ab12 [file] [log] [blame]
################################################################################
# Copyright (c) 2020 Geneviève Bastien
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
################################################################################
base = 10
limit = 300000
value = base;
while base < limit:
if value == 1:
base = base + 1
value = base
if value % 2 == 0:
value = value / 2
else:
value = 3 * value + 1