This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A371181 #7 Mar 21 2024 17:46:32 %S A371181 1,2,3,7,13,37,53,89,151,223,281,311,659,827,1069,1163,1511,2045,2423, %T A371181 3241,4211,5443,6473,6997,7561,9037,10271,10627,14323,17611,26203, %U A371181 28181,33613,50543,88099,88483,95603,98965,122119,168281,192709,305107,309073,420167 %N A371181 Sorted list of positions of first appearances in the sequence A370820, which counts distinct divisors of prime indices. %C A371181 A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. %e A371181 The terms together with their prime indices begin: %e A371181 1: {} %e A371181 2: {1} %e A371181 3: {2} %e A371181 7: {4} %e A371181 13: {6} %e A371181 37: {12} %e A371181 53: {16} %e A371181 89: {24} %e A371181 151: {36} %e A371181 223: {48} %e A371181 281: {60} %e A371181 311: {64} %e A371181 659: {120} %e A371181 827: {144} %e A371181 1069: {180} %e A371181 1163: {192} %e A371181 1511: {240} %e A371181 2045: {3,80} %e A371181 2423: {360} %e A371181 3241: {4,90} %e A371181 4211: {576} %e A371181 5443: {720} %e A371181 6473: {840} %e A371181 6997: {900} %e A371181 7561: {960} %e A371181 9037: {4,210} %t A371181 rnnm[q_]:=Max@@Select[Range[Min@@q,Max@@q],SubsetQ[q,Range[#]]&]; %t A371181 posfirsts[q_]:=Table[Position[q,n][[1,1]],{n,Min@@q,rnnm[q]}]; %t A371181 posfirsts[Table[Length[Union @@ Divisors/@PrimePi/@First/@If[n==1,{},FactorInteger[n]]],{n,1000}]]//Sort %Y A371181 Counting prime factors instead of divisors (see A303975) gives A062447(>0). %Y A371181 The unsorted version is A371131. %Y A371181 A000005 counts divisors. %Y A371181 A001221 counts distinct prime factors. %Y A371181 A003963 gives product of prime indices. %Y A371181 A027746 lists prime factors, A112798 indices, length A001222. %Y A371181 A355731 counts choices of a divisor of each prime index, firsts A355732. %Y A371181 A355741 counts choices of a prime factor of each prime index. %Y A371181 Cf. A000079, A000720, A000792, A002110, A005179, A007416, A355739, A370348, A370802, A370808, A371165, A371177. %K A371181 nonn %O A371181 1,2 %A A371181 _Gus Wiseman_, Mar 20 2024