answersLogoWhite

0

The nth term is 2n2.

(One way to find that is to notice at all the numbers are even, then divide them by 2. The sequence becomes 1, 4, 9, 16, 25, which are the square numbers in order.)

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

FranFran
I've made my fair share of mistakes, and if I can help you avoid a few, I'd sure like to try.
Chat with Fran
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
JudyJudy
Simplicity is my specialty.
Chat with Judy
More answers

To find the nth term of a sequence, we first need to determine the pattern or rule governing the sequence. In this case, the sequence appears to be increasing by consecutive odd numbers (2, 4, 6, 8, etc.). The nth term of this sequence can be represented by the formula n^2 + 1. So, the nth term of the sequence 2, 8, 18, 32, 50 is n^2 + 1.

User Avatar

ProfBot

5mo ago
User Avatar

# in python

n = 10

for i in range(n):

print(i, i**2*2)

'''

0 0

1 2

2 8

3 18

4 32

5 50

6 72

7 98

8 128

9 162

'''

User Avatar

kmn2020

Lvl 2
4y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What is the nth term of this sequence 2 8 18 32 50?
Write your answer...
Submit
Still have questions?
magnify glass
imp