What is the next term in the sequence?
1 6 , 2 3 , 2 8 , 3 8 , 4 9 , 6 2 , 7 0 , 7 7 , 9 1 , …
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.
Does anyone know how to generalize such a sequence (using mathematical symbols)? I am not too good on number theory, but i'm sure there has to be some way.
1+1=2, 2+2=4, 4+4=8, 8+8=16, 16+1+6=23, 23+2+3=28, 28+2+8=38, 38+3+8=49, 49+4+9=62, 62+6+2=70, 70+7+0=77, 77+7+7=91, 91+9+1=101
Same way☺☺☺
a(1) = 17, a(n) = sum of digits of all previous terms for n>1. Here the series starts from n=3.
A simple code would be something like this (PHP): $no of iterations = 45;$next element = 16;$counter = 0;$array = "";do {$next element = $next element + array sum(str split($next element));$counter += 1;if ($counter == $no of iterations) {$array = $array.$next element."(element no.".$counter.")";} else {$array = $array.$next element."(element no.".$counter."),";}}while ($counter < $no of iterations);echo $array;
Log in to reply
The number of iterations defines hoy many elements are displayed
For problems like this, we need to identify a pattern that works for all the terms, not just a few. Here, after a while of experimenting, basically "guess and check," we can see that the pattern is that you take the term before a term m n and add it's digits to get the term after it. Here is an example: a b , c d , e f , g h , i j , … , y z ⇒ a + b + a b = c d . Using this pattern, we can identify the term in the sequence that appears before the term that we are asked to find. This would be the number 9 1 . First, we take the sum of the digits, which would be 9 + 1 = 1 0 . Then, we add the sum of the digits to the original number, giving us 1 0 + 9 1 = 1 0 1 .
Answer:101,Hint:Pattern is (1+6 = 7,7+ 16 = 23),(2+3 = 5,23 + 5 =28), . . . . . . . so (9 + 1 = 10,91 + 10 = 101).
Problem Loading...
Note Loading...
Set Loading...
Each term is (the sum of the previous term) + (sum of the digits of the previous term). 1 6 + ( 1 + 6 ) = 2 3 2 3 + ( 2 + 3 ) = 2 8 2 8 + ( 2 + 8 ) = 3 8 and so on. Therefore, the answer comes out to be 9 1 + ( 9 + 1 ) = 1 0 1 .