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 A357862 #5 Oct 20 2022 16:27:04 %S A357862 1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,22,23,25,26,27,28, %T A357862 29,30,31,32,33,34,35,36,37,38,39,41,42,43,44,46,47,49,50,51,52,53,54, %U A357862 55,56,57,58,59,61,62,64,65,66,67,68,69,70,71,72,73,74 %N A357862 Numbers whose prime indices have strictly increasing run-sums. Heinz numbers of the partitions counted by A304428. %C A357862 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. %C A357862 The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). This gives a bijective correspondence between positive integers and integer partitions. %C A357862 The sequence of runs of a sequence consists of its maximal consecutive constant subsequences when read left-to-right. For example, the runs of (2,2,1,1,1,3,2,2) are (2,2), (1,1,1), (3), (2,2), with sums (4,3,3,4). %H A357862 Mathematics Stack Exchange, <a href="https://math.stackexchange.com/q/87559">What is a sequence run? (answered 2011-12-01)</a> %e A357862 The terms together with their prime indices begin: %e A357862 1: {} %e A357862 2: {1} %e A357862 3: {2} %e A357862 4: {1,1} %e A357862 5: {3} %e A357862 6: {1,2} %e A357862 7: {4} %e A357862 8: {1,1,1} %e A357862 9: {2,2} %e A357862 10: {1,3} %e A357862 11: {5} %e A357862 13: {6} %e A357862 14: {1,4} %e A357862 15: {2,3} %e A357862 16: {1,1,1,1} %e A357862 17: {7} %e A357862 18: {1,2,2} %e A357862 19: {8} %e A357862 For example, the prime indices of 24 are {1,1,1,2}, with run-sums (3,2), which are not strictly increasing, so 24 is not in the sequence. %t A357862 primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; %t A357862 Select[Range[100],Less@@Total/@Split[primeMS[#]]&] %Y A357862 These partitions are counted by A304428. %Y A357862 The complement is A357863. %Y A357862 These are the indices of rows in A354584 that are strictly increasing. %Y A357862 The opposite (strictly decreasing) version is A357864, counted by A304430. %Y A357862 The weakly increasing version is A357875, counted by A304405. %Y A357862 A001222 counts prime factors, distinct A001221. %Y A357862 A056239 adds up prime indices, row sums of A112798. %Y A357862 Cf. A118914, A181819, A275870, A300273, A304442. %K A357862 nonn %O A357862 1,2 %A A357862 _Gus Wiseman_, Oct 19 2022