answersLogoWhite

0


Best Answer

Given any number it is possible to find a polynomial of order 5 that will generate the above five numbers and the additional one.

The simplest polynomial of order 4 is

U4 = (-5n4 + 58n3 - 232n2 + 371n - 186)/6 for n = 1, 2, 3, ...

Accordingly, the next number is -44.

User Avatar

Wiki User

βˆ™ 10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the next in series of numers1 2 0 3 -1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What number comes next in this series 1 2 0 3 -1?

4


What comes next in the series 1-2-5-10-17?

This series is of the function f(x) = x2+1, starting with x=0.The next number in the series is 26. The number after that is 37.


Which should come next at the end of this series of numbers 1 2 0 3 -1?

4


Next number in series 100 10 1 0 1 .1 . 01?

The series is decreasing by a factor of 10 each time, moving from 100 to 10 to 1 to 0 to 1 to 0.1 to 0.01. The next number in the series would be 0.001, as it continues to decrease by a factor of 10 each time.


Select the next number in the series 5 1 0 6 9 7?

8


The next number in the series 0 1 3 6 10 15 21 is?

28


What comes next in series 1 2 0 3 -1?

The series appears to be alternating between adding and subtracting numbers. The pattern seems to be adding 1, then subtracting 2, then adding 3, and finally subtracting 4. Following this pattern, the next number in the series would be 1 (subtracting 4 from -1).


What numbers come next in this series 0 2 1 3 2 4 3?

The next four number in the sequence are... 4,5,5 & 6


What number should come next in this series 1 2 0 3 -1?

it will be 4 1+1=2-2=0+3=3-4=-1+5=4 regards, Aunali


Which should come next at the end of this series 1 2 0 3 -1?

1 2 0 3 -1 4 -2 5 -3 6 or 1 2 3 4 5 6 ... interlaced with 0 -1 -2 -3 -4 -5 .....


What is the next number in the following sequence 0 3 8 15?

24 The series formula is A(n) = n2 - 1 12 - 1 = 0 22 - 1 = 3 32 - 1 = 8 42 - 1= 15 52 - 1 = 24


What is the program to print Fibonacci series in qbasic?

CLS a = 0 b = 0 FOR i = 1 TO 10 IF a = 0 THEN f = 1 END IF PRINT f b = a a = f f = a + b NEXT i END from : Parth jani parthjani7@yahoo.com