A358526 Numbers k whose prime indices have a different number of permutations than any number less than k.
1, 6, 12, 24, 30, 48, 60, 72, 120, 144, 180, 192, 210, 288, 360, 384, 432, 480, 576, 720, 768, 840, 864, 900, 1080, 1152, 1260, 1296, 1440, 1680, 1728, 1920, 2160, 2304, 2520, 2592, 2880, 3072, 3360, 4320, 4608, 4620, 5040, 5400, 6300, 6912, 7200, 7560, 7680
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 6: {1,2} 12: {1,1,2} 24: {1,1,1,2} 30: {1,2,3} 48: {1,1,1,1,2} 60: {1,1,2,3} 72: {1,1,1,2,2} 120: {1,1,1,2,3} 144: {1,1,1,1,2,2} 180: {1,1,2,2,3} 192: {1,1,1,1,1,1,2} 210: {1,2,3,4} 288: {1,1,1,1,1,2,2} 360: {1,1,1,2,2,3} 384: {1,1,1,1,1,1,1,2} 432: {1,1,1,1,2,2,2} 480: {1,1,1,1,1,2,3}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; fir[q_]:=Select[Range[Length[q]],!MemberQ[Take[q,#-1],q[[#]]]&]; fir[Table[Length[Permutations[primeMS[n]]],{n,1000}]]
Comments