OFFSET
1,2
COMMENTS
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.
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).
LINKS
Mathematics Stack Exchange, What is a sequence run? (answered 2011-12-01)
EXAMPLE
The prime indices of 12 are {1,1,2}, with run-sums (2,2), so 12 is in the sequence.
MATHEMATICA
Select[Range[100], SameQ@@Cases[FactorInteger[#], {p_, k_}:>PrimePi[p]*k]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, May 23 2022
STATUS
approved