A371283 Heinz numbers of sets of divisors of positive integers. Numbers whose prime indices form the set of divisors of some positive integer.
2, 6, 10, 22, 34, 42, 62, 82, 118, 134, 166, 218, 230, 254, 314, 358, 382, 390, 422, 482, 554, 566, 662, 706, 734, 798, 802, 862, 922, 1018, 1094, 1126, 1174, 1198, 1234, 1418, 1478, 1546, 1594, 1718, 1754, 1838, 1914, 1934, 1982, 2062, 2126, 2134, 2174, 2306
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 2: {1} 6: {1,2} 10: {1,3} 22: {1,5} 34: {1,7} 42: {1,2,4} 62: {1,11} 82: {1,13} 118: {1,17} 134: {1,19} 166: {1,23} 218: {1,29} 230: {1,3,9} 254: {1,31} 314: {1,37} 358: {1,41} 382: {1,43} 390: {1,2,3,6}
Links
- Joseph Likar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n], {p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[2,100],SameQ[prix[#],Divisors[Last[prix[#]]]]&]
Comments