brownk23 brownk23
  • 02-02-2017
  • Mathematics
contestada

Start at 12. Create a pattern that multiplies each number by 4. Stop when you have 5 numbers

Respuesta :

StewieTwombly
StewieTwombly StewieTwombly
  • 02-02-2017
12, 48, 192, 768, 3072/
Answer Link
praxer praxer
  • 02-02-2017
Well, I think this is much better viewed in python:
#Start at 12. Create a pattern that multiplies each number by 4. Stop when you have 5 numbers
req_list = [12]i = 1while i < 5:    for b in req_list:        b = b * 4    i += 1    req_list.append(b)print(req_list)    
Answer Link

Otras preguntas

The asymptote of f(x) = 5(2^x) * (Type an equation.)
Can somebody help me with these problems please
Please help ASAP I might mark you brainliest
which part of the excerpt best demonstrates that the authors purpose is to entertain children with a humorous story? A. “in the sea, once upon a time, O my bes
If y varies inversely as x and x=5 when y=20, then what is the constant of variation, k?
Calculate the weight of a book if it has a mass of 0. 6kg
What is the quotient (6x4 − 15x3 + 10x2 − 10x + 4) ÷ (3x2 + 2)?
In the first half of the 1800s, how did the arrival of large numbers of immigrants affect economic conditions in US cities? -The number of available jobs rose.
Under current law, a book written in 1980, whose author died in 2000, would no longer be protected after the year a 2000 b 2030 c 2050 d none of the above
Tomas learned that the product of the polynomials [tex](a+b)(a^2-ab+b^2)[/tex] was a special pattern that would result in a sum of cubes, [tex]a^3+b^3[/tex]. Hi