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.

A384179 Number of ways to choose strict integer partitions of each conjugate prime index of n.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 4, 2, 1, 2, 1, 3, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 4, 1, 1, 3, 1, 2, 1, 2, 1, 4, 1, 2, 1, 1, 1, 2, 1, 1, 4, 4, 1, 2, 1, 2, 1, 2, 1, 3, 1, 1, 4, 2, 1, 2, 1, 3, 4, 1, 1, 2, 1, 1, 1
Offset: 1

Views

Author

Gus Wiseman, May 23 2025

Keywords

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.

Examples

			The prime indices of 180 are {1,1,2,2,3}, conjugate {5,3,1}, and we have choices:
  {{5},{3},{1}}
  {{5},{2,1},{1}}
  {{4,1},{3},{1}}
  {{4,1},{2,1},{1}}
  {{3,2},{3},{1}}
  {{3,2},{2,1},{1}}
so a(180) = 6.
		

Crossrefs

Positions of 1 are A037143, complement A033942.
For multiplicities instead of indices we have A050361.
Adding up over all integer partitions gives A270995, disjoint A279790, strict A279375.
The conjugate version is A357982, disjoint A383706.
The disjoint case is A384005.
A000041 counts integer partitions, strict A000009.
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.
A239455 counts Look-and-Say or section-sum partitions, ranks A351294 or A381432.
A351293 counts non Look-and-Say or non section-sum partitions, ranks A351295 or A381433.

Programs

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