Math Problem Statement

The 1st term in a number series is 8. From the 2nd term onwards, if the previous term is odd, then we subtract 1 from it and multiply it by 3. If the previous term is even, then we divide it by 2, before adding 2 to it. Find the 100th term in the series.

Solution

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Recursive Sequences
Number Patterns
Modulo Arithmetic

Formulas

If odd: (n-1) * 3
If even: n / 2 + 2

Theorems

Modulo Arithmetic

Suitable Grade Level

Grades 9-12