cp's OEIS Frontend

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.

A383516 Heinz numbers of Look-and-Say partitions that are not section-sum partitions.

Original entry on oeis.org

12, 18, 24, 48, 54, 63, 72, 96, 108, 144, 147, 162, 189, 192, 216, 288, 324, 360, 384, 432, 486, 504, 540, 567, 576, 600, 648, 720, 756, 768, 792, 864, 936, 972, 1008, 1029, 1152, 1176, 1188, 1200, 1224, 1296, 1323, 1350, 1368, 1400, 1404, 1440, 1458, 1500
Offset: 1

Views

Author

Gus Wiseman, May 18 2025

Keywords

Comments

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.
An integer partition is section-sum iff it is possible to choose a disjoint family of strict partitions, one of each of its positive 0-appended differences. These are ranked by A381432.
An integer partition is Look-and-Say iff it is possible to choose a disjoint family of strict partitions, one of each of its multiplicities. These are ranked by A351294.

Examples

			The terms together with their prime indices begin:
   12: {1,1,2}
   18: {1,2,2}
   24: {1,1,1,2}
   48: {1,1,1,1,2}
   54: {1,2,2,2}
   63: {2,2,4}
   72: {1,1,1,2,2}
   96: {1,1,1,1,1,2}
  108: {1,1,2,2,2}
  144: {1,1,1,1,2,2}
  147: {2,4,4}
  162: {1,2,2,2,2}
  189: {2,2,2,4}
  192: {1,1,1,1,1,1,2}
  216: {1,1,1,2,2,2}
  288: {1,1,1,1,1,2,2}
  324: {1,1,2,2,2,2}
  360: {1,1,1,2,2,3}
  384: {1,1,1,1,1,1,1,2}
		

Crossrefs

Ranking sequences are shown in parentheses below.
These partitions are counted by A383509.
A048767 is the Look-and-Say transform, fixed points A048768, counted by A217605.
A055396 gives least prime index, greatest A061395.
A056239 adds up prime indices, row sums of A112798, counted by A001222.
A098859 counts Wilf partitions (A130091), conjugate (A383512).
A122111 represents conjugation in terms of Heinz numbers.
A239455 counts Look-and-Say partitions (A351294), complement A351293 (A351295).
A239455 counts section-sum partitions (A381432), complement A351293 (A381433).
A336866 counts non Wilf partitions (A130092), conjugate (A383513).
A381431 is the section-sum transform.
A383508 counts partitions that are both Look-and-Say and section-sum (A383515).
A383509 counts partitions that are not Look-and-Say but are section-sum (A384007).
A383510 counts partitions that are neither Look-and-Say nor section-sum (A383517).
A383511 counts partitions that are Look-and-Say and section-sum but not Wilf (A383518).

Programs

  • Mathematica
    disjointFamilies[y_]:=Select[Tuples[IntegerPartitions/@Length/@Split[y]],UnsameQ@@Join@@#&];
    prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    conj[y_]:=If[Length[y]==0,y,Table[Length[Select[y,#>=k&]],{k,1,Max[y]}]];
    Select[Range[100],disjointFamilies[prix[#]]!={}&&disjointFamilies[conj[prix[#]]]=={}&]