A360556
Numbers > 1 whose first differences of 0-prepended prime indices have integer median.
Original entry on oeis.org
2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 26, 27, 28, 29, 30, 31, 32, 35, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 52, 53, 57, 58, 59, 60, 61, 63, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 81, 83, 84, 86, 87, 89
Offset: 1
The 0-prepended prime indices of 1617 are {0,2,4,4,5}, with sorted differences {0,1,2,2}, with median 3/2, so 1617 is not in the sequence.
For mean instead of median we have
A340610.
Positions of even terms in
A360555.
The complement is
A360557 (without 1).
These partitions are counted by
A360688.
A360614/
A360615 = mean of first differences of 0-prepended prime indices.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[2,100],IntegerQ[Median[Differences[Prepend[prix[#],0]]]]&]
A360557
Numbers > 1 whose sorted first differences of 0-prepended prime indices have non-integer median.
Original entry on oeis.org
4, 10, 15, 22, 24, 25, 33, 34, 36, 40, 46, 51, 54, 55, 56, 62, 69, 77, 82, 85, 88, 93, 94, 100, 104, 115, 118, 119, 121, 123, 134, 135, 136, 141, 146, 152, 155, 161, 166, 177, 184, 187, 194, 196, 201, 205, 206, 217, 218, 219, 220, 221, 225, 232, 235, 240, 248
Offset: 1
The 0-prepended prime indices of 1617 are {0,2,4,4,5}, with sorted differences {0,1,2,2}, with median 3/2, so 1617 is in the sequence.
For mean instead of median complement we have
A340610, counted by
A168659.
These partitions are counted by
A360691.
A287352 lists 0-prepended first differences of prime indices.
A355536 lists first differences of prime indices.
A360614/
A360615 = mean of first differences of 0-prepended prime indices.
-
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
Select[Range[2,100],!IntegerQ[Median[Differences[Prepend[prix[#],0]]]]&]
A360668
Numbers > 1 whose greatest prime index is not divisible by their number of prime factors (bigomega).
Original entry on oeis.org
4, 8, 10, 12, 15, 16, 18, 22, 24, 25, 27, 28, 32, 33, 34, 36, 40, 42, 44, 46, 48, 51, 54, 55, 60, 62, 63, 64, 66, 68, 69, 70, 72, 76, 77, 80, 81, 82, 85, 88, 90, 93, 94, 96, 98, 99, 100, 102, 104, 105, 108, 110, 112, 114, 115, 116, 118, 119, 120, 121, 123, 124
Offset: 1
The prime indices of 1617 are {2,4,4,5}, and 5 is not divisible by 4, so 1617 is in the sequence.
These partitions are counted by
A200727.
A067340 lists numbers whose prime signature has integer mean.
A334201 adds up all prime indices except the greatest.
A348551 = numbers w/ non-integer mean of prime indices, complement
A316413.
-
Select[Range[2,100],!Divisible[PrimePi[FactorInteger[#][[-1,1]]],PrimeOmega[#]]&]
A360670
Number of integer partitions of n whose parts have the same mean as their negated first differences.
Original entry on oeis.org
1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 1, 2, 0, 2, 0, 2, 2, 0, 0, 5, 1, 0, 3, 3, 0, 4, 0, 5, 3, 0, 2, 10, 0, 0, 4, 10, 0, 5, 0, 7, 9, 0, 0, 17, 1, 6, 5, 10, 0, 9, 8, 14, 6, 0, 0, 34, 0, 0, 9, 18, 13, 13, 0, 17, 7, 19, 0, 40, 0, 0, 28
Offset: 0
The a(n) partitions for n = 4, 12, 24, 27, 30, 44:
(3,1) (9,3) (18,6) (19,7,1) (21,8,1) (33,11)
(9,2,1) (17,6,1) (20,5,2) (22,6,2) (34,5,4,1)
(18,4,2) (21,3,3) (23,4,3) (34,6,3,1)
(19,2,2,1) (25,2,1,1,1) (34,7,2,1)
(19,3,1,1) (34,8,1,1)
(35,4,3,2)
(35,5,2,2)
For example, the partition y = (28,4,3,1), with mean 9, has negated first differences (24,2,1), with mean 9, so y is counted under a(36).
These partitions have ranks
A360669.
A360614/
A360615 = mean of first differences of 0-prepended prime indices.
-
Table[Length[Select[IntegerPartitions[n], Mean[#]==Mean[Differences[Reverse[#]]]&]],{n,0,30}]
Showing 1-4 of 4 results.
Comments