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.

Previous Showing 11-14 of 14 results.

A367682 Number of integer partitions of n whose multiset of multiplicities is the same as their multiset multiplicity kernel.

Original entry on oeis.org

1, 1, 0, 1, 3, 2, 3, 2, 5, 5, 10, 9, 14, 14, 21, 20, 30, 36, 44, 50, 66, 75, 93, 106, 132, 151, 185, 212, 256, 286, 348, 394, 479, 543, 642, 740, 888, 994, 1176, 1350, 1589, 1789, 2109, 2371, 2786, 3144, 3653, 4126, 4811, 5385, 6213
Offset: 0

Views

Author

Gus Wiseman, Nov 30 2023

Keywords

Comments

We define the multiset multiplicity kernel MMK(m) of a multiset m by the following property, holding for all distinct multiplicities k >= 1. If S is the set of elements of multiplicity k in m, then min(S) has multiplicity |S| in MMK(m). For example, MMK({1,1,2,2,3,4,5}) = {1,1,3,3,3}, and MMK({1,2,3,4,5,5,5,5}) = {1,1,1,1,5}. As an operation on multisets MMK is represented by A367579, and as an operation on their ranks it is represented by A367580.

Examples

			The a(1) = 1 through a(10) = 10 partitions:
  (1)  .  (21)  (22)   (41)   (51)    (61)   (71)     (81)    (91)
                (31)   (221)  (321)   (421)  (431)    (333)   (541)
                (211)         (3111)         (521)    (531)   (631)
                                             (3221)   (621)   (721)
                                             (41111)  (4221)  (3322)
                                                              (3331)
                                                              (4321)
                                                              (5221)
                                                              (322111)
                                                              (511111)
		

Crossrefs

The case of strict partitions is A025147, ranks A039956.
The case of distinct multiplicities is A114640, ranks A109297.
These partitions have ranks A367683.
A000041 counts integer partitions, strict A000009.
A072233 counts partitions by number of parts.
A091602 counts partitions by greatest multiplicity, least A243978.
A116608 counts partitions by number of distinct parts.

Programs

  • Mathematica
    mmk[q_]:=With[{mts=Length/@Split[q]}, Sort[Table[Min@@Select[q,Count[q,#]==i&], {i,mts}]]];
    Table[Length[Select[IntegerPartitions[n], Sort[Length/@Split[#]]==mmk[#]&]], {n,0,15}]

A367684 Number of integer partitions of n whose multiset multiplicity kernel is a submultiset.

Original entry on oeis.org

1, 1, 2, 2, 4, 5, 8, 10, 14, 17, 25, 30, 39, 51, 66, 79, 102, 125, 154, 191, 233, 284, 347, 420, 499, 614, 726, 867, 1031, 1233, 1437, 1726, 2002, 2375, 2770, 3271, 3760, 4455, 5123, 5994, 6904, 8064, 9199, 10753, 12241, 14202, 16189, 18704, 21194, 24504
Offset: 0

Views

Author

Gus Wiseman, Nov 30 2023

Keywords

Comments

We define the multiset multiplicity kernel MMK(m) of a multiset m by the following property, holding for all distinct multiplicities k >= 1. If S is the set of elements of multiplicity k in m, then min(S) has multiplicity |S| in MMK(m). For example, MMK({1,1,2,2,3,4,5}) = {1,1,3,3,3}, and MMK({1,2,3,4,5,5,5,5}) = {1,1,1,1,5}. As an operation on multisets MMK is represented by A367579, and as an operation on their ranks it is represented by A367580.

Examples

			The a(1) = 1 through a(7) = 10 partitions:
  (1)  (2)   (3)    (4)     (5)      (6)       (7)
       (11)  (111)  (22)    (221)    (33)      (322)
                    (211)   (311)    (222)     (331)
                    (1111)  (2111)   (411)     (511)
                            (11111)  (2211)    (2221)
                                     (3111)    (4111)
                                     (21111)   (22111)
                                     (111111)  (31111)
                                               (211111)
                                               (1111111)
		

Crossrefs

The case of strict partitions is A000012.
Includes all partitions with distinct multiplicities A098859, ranks A130091.
These partitions have ranks A367685.
A000041 counts integer partitions, strict A000009.
A072233 counts partitions by number of parts.
A091602 counts partitions by greatest multiplicity, least A243978.
A116608 counts partitions by number of distinct parts.
A116861 counts partitions by sum of distinct parts.

Programs

  • Mathematica
    submultQ[cap_,fat_]:=And@@Function[i, Count[fat,i]>=Count[cap, i]]/@Union[List@@cap];
    mmk[q_List]:=With[{mts=Length/@Split[q]}, Sort[Table[Min@@Select[q,Count[q,#]==i&], {i,mts}]]];
    Table[Length[Select[IntegerPartitions[n], submultQ[mmk[#],#]&]], {n,0,15}]

A367768 Numbers k such that MMK(k) = MMK(i) for some i < k, where MMK is multiset multiplicity kernel A367580.

Original entry on oeis.org

4, 8, 9, 10, 14, 16, 18, 21, 22, 24, 25, 26, 27, 32, 33, 34, 36, 38, 39, 40, 42, 46, 48, 49, 50, 51, 54, 55, 56, 57, 58, 62, 64, 65, 66, 69, 70, 72, 74, 75, 78, 80, 81, 82, 84, 85, 86, 87, 88, 91, 93, 94, 95, 96, 98, 100, 102, 104, 106, 108, 110, 111, 112, 114
Offset: 1

Views

Author

Gus Wiseman, Dec 01 2023

Keywords

Comments

We define the multiset multiplicity kernel (MMK) of a positive integer n to be the product of (least prime factor with exponent k)^(number of prime factors with exponent k) over all distinct exponents k appearing in the prime factorization of n. For example, 90 has prime factorization 2^1 * 3^2 * 5^1, so for k = 1 we have 2^2, and for k = 2 we have 3^1, so MMK(90) = 12. As an operation on multisets MMK is represented by A367579, and as an operation on their ranks it is represented by A367580.

Examples

			The terms together with their prime indices begin:
    4: {1,1}
    8: {1,1,1}
    9: {2,2}
   10: {1,3}
   14: {1,4}
   16: {1,1,1,1}
   18: {1,2,2}
   21: {2,4}
   22: {1,5}
   24: {1,1,1,2}
   25: {3,3}
   26: {1,6}
   27: {2,2,2}
   32: {1,1,1,1,1}
   33: {2,5}
   34: {1,7}
   36: {1,1,2,2}
		

Crossrefs

The squarefree case is A073486, complement A073485.
The MMK triangle is A367579, sum A367581, min A055396, max A367583.
Sorted positions of non-first appearances in A367580.
The complement is A367585, sorted version of A367584.
A007947 gives squarefree kernel.
A027746 lists prime factors, length A001222, indices A112798.
A027748 lists distinct prime factors, length A001221, indices A304038.
A071625 counts distinct prime exponents.
A124010 gives prime signature, sorted A118914.

Programs

  • Mathematica
    nn=100;
    mmk[q_]:=With[{mts=Length/@Split[q]}, Sort[Table[Min@@Select[q,Count[q,#]==i&], {i,mts}]]];
    qq=Table[Times@@mmk[Join @@ ConstantArray@@@FactorInteger[n]],{n,nn}];
    Select[Range[nn], MemberQ[Take[qq,#-1], qq[[#]]]&]

Formula

A367580(a(k)) = A367580(i) for some i < a(k).

A367860 Sum of the multiset multiplicity cokernel (in which each multiplicity becomes the greatest element of that multiplicity) of the prime indices of n.

Original entry on oeis.org

0, 1, 2, 1, 3, 4, 4, 1, 2, 6, 5, 3, 6, 8, 6, 1, 7, 3, 8, 4, 8, 10, 9, 3, 3, 12, 2, 5, 10, 9, 11, 1, 10, 14, 8, 4, 12, 16, 12, 4, 13, 12, 14, 6, 5, 18, 15, 3, 4, 4, 14, 7, 16, 3, 10, 5, 16, 20, 17, 7, 18, 22, 6, 1, 12, 15, 19, 8, 18, 12, 20, 3, 21, 24, 5, 9, 10
Offset: 1

Views

Author

Gus Wiseman, Dec 03 2023

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.
We define the multiset multiplicity cokernel MMC(m) of a multiset m by the following property, holding for all distinct multiplicities k >= 1. If S is the set of elements of multiplicity k in m, then max(S) has multiplicity |S| in MMC(m). For example, MMC({1,1,2,2,3,4,5}) = {2,2,5,5,5}, and MMC({1,2,3,4,5,5,5,5}) = {4,4,4,4,5}. As an operation on multisets MMC is represented by A367858, and as an operation on their ranks it is represented by A367859.

Examples

			The multiset multiplicity cokernel of {1,2,2,3} is {2,3,3}, so a(90) = 8.
		

Crossrefs

Positions of 1's are A000079 without 1.
Depends only on rootless base A052410, see A007916, A052409.
For kernel instead of cokernel we have A367581, row-sums of A367579.
For minimum instead of sum we have A367587, opposite A367583.
The triangle A367858 has these as row sums, ranks A367859.
A007947 gives squarefree kernel.
A112798 lists prime indices, length A001222, sum A056239, reverse A296150.
A124010 gives prime signature, sorted A118914.
A181819 gives prime shadow, with an inverse A181821.
A238747 gives prime metasignature, reverse A353742.
A304038 lists distinct prime indices, length A001221, sum A066328.

Programs

  • Mathematica
    mmc[q_]:=With[{mts=Length/@Split[q]}, Sort[Table[Max@@Select[q,Count[q,#]==i&], {i,mts}]]];
    Table[Total[mmc[PrimePi/@Join@@ConstantArray@@@If[n==1, {},FactorInteger[n]]]],{n,100}]
Previous Showing 11-14 of 14 results.