A355386 Position of first appearance of n in A355382, where A355382(m) = number of divisors d of m such that bigomega(d) = omega(m); or a(n) = -1 if n does not appear in A355382.
1, 12, 36, 120, 180, 360, 840, 1260, 5400, 27000, 2520, 5040, 6300, 7560, 15120, 12600, 25200
Offset: 1
Examples
The terms together with their prime indices begin: 1: {} 12: {1,1,2} 36: {1,1,2,2} 120: {1,1,1,2,3} 180: {1,1,2,2,3} 360: {1,1,1,2,2,3} 840: {1,1,1,2,3,4} 1260: {1,1,2,2,3,4} 5400: {1,1,1,2,2,2,3,3} 27000: {1,1,1,2,2,2,3,3,3} 2520: {1,1,1,2,2,3,4} 5040: {1,1,1,1,2,2,3,4} 6300: {1,1,2,2,3,3,4} 7560: {1,1,1,2,2,2,3,4} 15120: {1,1,1,1,2,2,2,3,4} The terms together with their divisors satisfying the condition begin: 1: 1 12: 4, 6 36: 4, 6, 9 120: 8, 12, 20, 30 180: 12, 18, 20, 30, 45 360: 8, 12, 18, 20, 30, 45 840: 24, 40, 56, 60, 84, 140, 210 1260: 36, 60, 84, 90, 126, 140, 210, 315 5400: 8, 12, 18, 20, 27, 30, 45, 50, 75 27000: 8, 12, 18, 20, 27, 30, 45, 50, 75, 125 2520: 24, 36, 40, 56, 60, 84, 90, 126, 140, 210, 315 5040: 16, 24, 36, 40, 56, 60, 84, 90, 126, 140, 210, 315 6300: 36, 60, 84, 90, 100, 126, 140, 150, 210, 225, 315, 350, 525
Crossrefs
Programs
-
Mathematica
tf=Table[Length[Select[Divisors[n],PrimeOmega[#]==PrimeNu[n]&]],{n,1000}]; Table[Position[tf,n][[1,1]],{n,Select[Union[tf],SubsetQ[tf,Range[#]]&]}]
Comments