A371181 Sorted list of positions of first appearances in the sequence A370820, which counts distinct divisors of prime indices.
1, 2, 3, 7, 13, 37, 53, 89, 151, 223, 281, 311, 659, 827, 1069, 1163, 1511, 2045, 2423, 3241, 4211, 5443, 6473, 6997, 7561, 9037, 10271, 10627, 14323, 17611, 26203, 28181, 33613, 50543, 88099, 88483, 95603, 98965, 122119, 168281, 192709, 305107, 309073, 420167
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 1: {} 2: {1} 3: {2} 7: {4} 13: {6} 37: {12} 53: {16} 89: {24} 151: {36} 223: {48} 281: {60} 311: {64} 659: {120} 827: {144} 1069: {180} 1163: {192} 1511: {240} 2045: {3,80} 2423: {360} 3241: {4,90} 4211: {576} 5443: {720} 6473: {840} 6997: {900} 7561: {960} 9037: {4,210}
Crossrefs
Programs
-
Mathematica
rnnm[q_]:=Max@@Select[Range[Min@@q,Max@@q],SubsetQ[q,Range[#]]&]; posfirsts[q_]:=Table[Position[q,n][[1,1]],{n,Min@@q,rnnm[q]}]; posfirsts[Table[Length[Union @@ Divisors/@PrimePi/@First/@If[n==1,{},FactorInteger[n]]],{n,1000}]]//Sort
Comments