A367586 Numbers whose prime indices have a multiset multiplicity kernel (in which each prime exponent becomes the least prime factor with that exponent) that is all ones {1,1,...}. Positions of powers of 2 in A367580.
1, 2, 4, 6, 8, 10, 14, 16, 22, 26, 30, 32, 34, 36, 38, 42, 46, 58, 62, 64, 66, 70, 74, 78, 82, 86, 94, 100, 102, 106, 110, 114, 118, 122, 128, 130, 134, 138, 142, 146, 154, 158, 166, 170, 174, 178, 182, 186, 190, 194, 196, 202, 206, 210, 214, 216, 218, 222
Offset: 1
Keywords
Examples
We have MMK({1,1,2,2}) = {1,1} so 36 is in the sequence. The terms together with their prime indices begin: 1: {} 2: {1} 4: {1,1} 6: {1,2} 8: {1,1,1} 10: {1,3} 14: {1,4} 16: {1,1,1,1} 22: {1,5} 26: {1,6} 30: {1,2,3} 32: {1,1,1,1,1} 34: {1,7} 36: {1,1,2,2} 38: {1,8} 42: {1,2,4}
Crossrefs
Programs
-
Maple
isA := proc(n) z := padic:-ordp(n, 2); andseq(z=p[2], p in ifactors(n)[2]) end: select(isA, [seq(1..222)]); # Peter Luschny, Jun 10 2025
-
Mathematica
Select[Range[100], #==1||EvenQ[#]&&SameQ@@Last/@FactorInteger[#]&]
Formula
Consists of 1 and all even terms of A072774 (powers of squarefree numbers).
Comments