A381077 Sorted positions of first appearances in A380986 (product of prime indices minus product of distinct prime indices).
1, 9, 25, 49, 63, 81, 99, 121, 125, 135, 169, 171, 245, 279, 289, 343, 361, 363, 369, 375, 387, 477, 529, 531, 575, 603, 625, 675, 711, 729, 747, 833, 841, 847, 873, 875, 891, 909, 961, 981, 1029, 1083, 1125, 1127, 1179, 1225, 1251, 1377, 1413, 1445, 1467
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 9: {2,2} 25: {3,3} 49: {4,4} 63: {2,2,4} 81: {2,2,2,2} 99: {2,2,5} 121: {5,5} 125: {3,3,3} 135: {2,2,2,3} 169: {6,6} 171: {2,2,8} 245: {3,4,4} 279: {2,2,11}
Crossrefs
A007947 gives squarefree kernel.
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,10000}]; Select[Range[Length[q]],FreeQ[Take[q,#-1],q[[#]]]&]
Comments