login
A382912
Numbers k such that row k of A305936 (a multiset whose multiplicities are the prime indices of k) has no permutation with all distinct run-lengths.
26
4, 8, 9, 12, 16, 18, 20, 24, 27, 28, 32, 36, 40, 44, 45, 48, 50, 52, 54, 56, 60, 63, 64, 68, 72, 75, 76, 80, 81, 84, 88, 90, 92, 96, 98, 99, 100, 104, 108, 112, 116, 117, 120, 124, 125, 126, 128, 132, 135, 136, 140, 144, 148, 150, 152, 153, 156, 160, 162, 164
OFFSET
1,1
COMMENTS
This described multiset (row n of A305936, Heinz number A181821) is generally not the same as the multiset of prime indices of n (A112798). For example, the prime indices of 12 are {1,1,2}, while a multiset whose multiplicities are {1,1,2} is {1,1,2,3}.
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, sum A056239.
EXAMPLE
The terms, prime indices, and corresponding multisets begin:
4: {1,1} {1,2}
8: {1,1,1} {1,2,3}
9: {2,2} {1,1,2,2}
12: {1,1,2} {1,1,2,3}
16: {1,1,1,1} {1,2,3,4}
18: {1,2,2} {1,1,2,2,3}
20: {1,1,3} {1,1,1,2,3}
24: {1,1,1,2} {1,1,2,3,4}
27: {2,2,2} {1,1,2,2,3,3}
28: {1,1,4} {1,1,1,1,2,3}
32: {1,1,1,1,1} {1,2,3,4,5}
36: {1,1,2,2} {1,1,2,2,3,4}
40: {1,1,1,3} {1,1,1,2,3,4}
44: {1,1,5} {1,1,1,1,1,2,3}
45: {2,2,3} {1,1,1,2,2,3,3}
48: {1,1,1,1,2} {1,1,2,3,4,5}
50: {1,3,3} {1,1,1,2,2,2,3}
52: {1,1,6} {1,1,1,1,1,1,2,3}
MATHEMATICA
nrmptn[n_]:=Join@@MapIndexed[Table[#2[[1]], {#1}]&, If[n==1, {}, Flatten[Cases[FactorInteger[n]//Reverse, {p_, k_} :> Table[PrimePi[p], {k}]]]]];
lasQ[y_]:=Select[Permutations[y], UnsameQ@@Length/@Split[#]&]!={};
Select[Range[100], Not@*lasQ@*nrmptn]
CROSSREFS
The Look-and-Say partition is ranked by A048767, listed by A381440.
Look-and-Say partitions are counted by A239455, ranks A351294.
Non-Look-and-Say partitions are counted by A351293.
For prime indices instead of signature we have A351295, conjugate A381433.
The complement is A382913.
For equal instead of distinct run-lengths we have A382914, see A382858, A382879, A382915.
A056239 adds up prime indices, row sums of A112798.
A329739 counts compositions with distinct run-lengths, ranks A351596, complement A351291.
A381431 lists the section-sum partition of n, ranks A381436, union A381432.
Sequence in context: A034043 A278517 A053443 * A387176 A376715 A360070
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 12 2025
STATUS
approved