A380988 Sorted positions of first appearances in A290106 (product of prime indices divided by product of distinct prime indices).
1, 9, 25, 27, 81, 121, 125, 169, 243, 289, 625, 675, 729, 841, 961, 1125, 1331, 1681, 1849, 2025, 2187, 2197, 2209, 3125, 3267, 3481, 4489, 4913, 5329, 5625, 6075, 6241, 6561, 6889, 7803, 9801, 10125, 10201, 11881, 11979, 12769, 14641, 15125, 15625, 16129
Offset: 1
Keywords
Examples
The prime indices of 225 are {2,2,3,3}, with image A290106(225) = 6. The prime indices of 169 are {6,6}, also with image 6. Since the latter is the first with image 6, 169 is in the sequence, and 225 is not. The terms together with their prime indices begin: 1: {} 9: {2,2} 25: {3,3} 27: {2,2,2} 81: {2,2,2,2} 121: {5,5} 125: {3,3,3} 169: {6,6} 243: {2,2,2,2,2} 289: {7,7} 625: {3,3,3,3} 675: {2,2,2,3,3} 729: {2,2,2,2,2,2} 841: {10,10} 961: {11,11} 1125: {2,2,3,3,3} 1331: {5,5,5} 1681: {13,13} 1849: {14,14} 2025: {2,2,2,2,3,3}
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; q=Table[Times@@prix[n]/Times@@Union[prix[n]],{n,1000}]; Select[Range[Length[q]],FreeQ[Take[q,#-1],q[[#]]]&]
Comments