Can you work out the mathematical rule for this number sequence?
354, 72, 345, 132, 6, 216, 9, 729, 354, 72, 345........
Hint 1
this is a mathematical puzzle
From time to time hints will be updated until solved.
Note: this sequence cannot be found in The On-Line Encyclopedia of Integer Sequences
Answer
Take
the n-th digit, where n is the first digit (if n is more than the number of the digits then "modulo" it -- wrap around)
and
cube it
then
sum with other digits
so you will get
354 -> 3+5+43 (3rd digit) = 72
72 -> 73+2 (7th digit) = 345
345 -> 3+4+53 (3rd digit) = 132
132 -> 13+3+2 (1st digit) = 6
6 -> 63 (6th digit) = 216
216 -> 2+13+6 (2nd digit) = 9
9 -> 93 (9th digit) = 729
729 -> 73+2+9 (7th digit) = 354
...
No comments:
Post a Comment