A351876 Numbers whose trajectory under iteration of the product of cubes of nonzero digits map includes 1 (conjectured).
1, 2, 3, 5, 8, 10, 11, 12, 13, 15, 18, 20, 21, 24, 25, 27, 30, 31, 42, 45, 50, 51, 52, 54, 55, 56, 57, 65, 72, 75, 80, 81, 100, 101, 102, 103, 105, 108, 110, 111, 112, 113, 115, 118, 120, 121, 124, 125, 127, 130, 131, 142, 145, 150, 151, 152, 154, 155, 156, 157, 165, 172, 175, 180, 181
Offset: 1
Examples
217 is a term of the sequence; its trajectory is 217 -> 2744 -> 11239424 -> 5159780352 -> 54010152000000000 -> 8000000 -> 512 -> 1000 -> 1. 4 is not a term of the sequence; its trajectory begins with 4 -> 64 -> 13824 -> 7077888 -> 5416169448144896 -> 188436971148778297205194752000 -> 1545896640285238037724131582088286996267008000000 -> ... Subsequent terms in the trajectory get larger and larger, rather than reaching 1. However, it is not yet known whether it eventually reaches 1 after some number of iterations > 30.
Programs
-
Mathematica
Select[Range[1000], FixedPoint[ Product[ReplaceAll[0 -> 1][IntegerDigits[#]][[i]]^3, {i, 1, Length[ReplaceAll[0 -> 1][IntegerDigits[#]]]}] &, #, 12] == 1 &]
Comments