A182855 Numbers that require exactly five iterations to reach a fixed point under the x -> A181819(x) map.
60, 84, 90, 120, 126, 132, 140, 150, 156, 168, 180, 198, 204, 220, 228, 234, 240, 252, 260, 264, 270, 276, 280, 294, 300, 306, 308, 312, 315, 336, 340, 342, 348, 350, 364, 372, 378, 380, 396, 408, 414, 420, 440, 444, 450, 456, 460, 468, 476, 480, 490, 492, 495
Offset: 1
Keywords
Examples
1. 180 requires exactly five iterations under the x -> A181819(x) map to reach a fixed point (namely, 2). A181819(180) = 18; A181819(18) = 6; A181819(6) = 4; A181819(4) = 3; A181819(3) = 2 (and A181819(2) = 2). 2. The prime signature of 180 (2^2*3^2*5) is (2,2,1). a. Two distinct numbers appear in (2,2,1) (namely, 1 and 2). b. Neither 1 nor 2 appears in (2,2,1) the same number of times as any other number that appears there.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Fixed Point
- Eric Weisstein's World of Mathematics, Map
Crossrefs
Programs
-
Mathematica
Select[Range[1000],With[{sig=Sort[Last/@FactorInteger[#]]},And[!SameQ@@Length/@Split[sig],SameQ@@Length/@Union/@GatherBy[sig,Length[Position[sig,#]]&]]]&] (* Gus Wiseman, Jan 02 2019 *)
Comments