find the next sequence 0, 10, 1110, 3110, __ .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
This is not really a problem, more like trick question.
1 st seq. : 0 (given).
2 nd seq. : there is a 1 number 0 in the last seq., so it's 1 0 .
3 rd seq. : there is a 1 number 1 and 1 number 0 in the last seq., so it's 1 1 1 0
4 th seq. : there is 3 number 1 and 1 number 0 in the last seq., so it's 3 1 1 0 .
And so on.
In my humble opinion, this problem isn't really challenging, it would be if you ask the n -th term, such as 100.