A sequence starts with 1 and 2, and each subsequent term is the sum of the digits of the product of the previous two terms. As a result, the third term is 2, the fourth is 4, and the fifth is 8.
Write a function to compute the nth term of the sequence.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers23
Suggested Problems
-
Sum all integers from 1 to 2^n
17526 Solvers
-
519 Solvers
-
Implement a bubble sort technique and output the number of swaps required
390 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
399 Solvers
-
Return fibonacci sequence do not use loop and condition
855 Solvers
More from this Author323
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This is a good problem. James would be proud of your test suite.
Thanks goc3!
Very nice problem. And a very elegant series:)