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

SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
ViviVivi
Your ride-or-die bestie who's seen you through every high and low.
Chat with Vivi
BeauBeau
You're doing better than you think!
Chat with Beau
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

4mo 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