login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A293511
Numbers that can be written as a product of distinct squarefree numbers in exactly one way.
9
1, 2, 3, 5, 7, 11, 12, 13, 17, 18, 19, 20, 23, 28, 29, 31, 36, 37, 41, 43, 44, 45, 47, 50, 52, 53, 59, 61, 63, 67, 68, 71, 73, 75, 76, 79, 83, 89, 92, 97, 98, 99, 100, 101, 103, 107, 109, 113, 116, 117, 120, 124, 127, 131, 137, 139, 147, 148, 149, 151, 153
OFFSET
1,2
COMMENTS
First differs from A212166 at a(128) = 363, A212166(128) = 360.
EXAMPLE
360 is not in the sequence because it has two possible expressions: 2*3*6*10 or 2*6*30.
MATHEMATICA
nn=300;
sqfacs[n_]:=If[n<=1, {{}}, Join@@Table[Map[Prepend[#, d]&, Select[sqfacs[n/d], Min@@#>d&]], {d, Select[Rest[Divisors[n]], SquareFreeQ]}]];
Select[Range[nn], Length[sqfacs[#]]===1&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 11 2017
STATUS
approved