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.
%I A060448 #16 Oct 03 2018 03:38:55 %S A060448 1,1,1,2,1,5,1,5,2,5,1,13,1,5,5,9,1,13,1,13,5,5,1,62,2,5,5,13,1,59,1, %T A060448 16,5,5,5,90,1,5,5,62,1,59,1,13,13,5,1,192,2,13,5,13,1,62,5,62,5,5,1, %U A060448 817,1,5,13,32,5,59,1,13,5,59,1,885,1,5,13,13,5,59,1,192,9,5,1,817,5,5 %N A060448 Each c(i) is "multiply" (*) or "divide" (/); d(1) = 1 < d(2) < ... < d(m) = n are the divisors of n; a(n) is number of choices for c(1), ..., c(m-1) so that d(1) c(1) d(2) c(2) d(3), .., c(m-1) d(m) is an integer. %C A060448 a(n) = number of partitions of the set of divisors of n into two subsets U and V such that min(U) < min(V) and product(V) divides product(U). [_Reinhard Zumkeller_, Apr 05 2012] %C A060448 It would appear that a(n) depends only on n's prime signature. - _Charlie Neder_, Oct 02 2018 %H A060448 Reinhard Zumkeller, <a href="/A060448/b060448.txt">Table of n, a(n) for n = 1..1000</a> %H A060448 Reinhard Zumkeller, <a href="/A060448/a060448.lhs.txt">Example for n = 120</a> %F A060448 a(A008578(n)) = 1; a(A002808(n)) > 1. [_Reinhard Zumkeller_, Apr 05 2012] %e A060448 For n = 6 there are 5 possibilities: 1*2*3*6=36, 1/2*3*6=9, 1*2/3*6=4, 1/2/3*6=1, 1*2*3/6=1 For n = 18 there are 13 possibilities: 1*2*3*6*9*18 1/2*3*6*9*18 1*2/3*6*9*18 1*2*3/6*9*18 1*2*3*6/9*18 1*2*3*6*9/18 1/2/3*6*9*18 1/2/3*6/9*18 1/2*3*6/9*18 1*2/3/6*9*18 1*2/3*6/9*18 1*2/3*6*9/18 1*2*3/6/9*18 %o A060448 (Haskell) %o A060448 import Data.List (subsequences, (\\)) %o A060448 a060448 n = length [us | let ds = a027750_row n, %o A060448 us <- init $ tail $ subsequences ds, %o A060448 let vs = ds \\ us, head us < head vs, %o A060448 product us `mod` product vs == 0] + 1 %o A060448 -- _Reinhard Zumkeller_, Apr 05 2012 %Y A060448 Cf. A058524, A060636. %K A060448 nonn,nice %O A060448 1,4 %A A060448 _Naohiro Nomoto_, Apr 14 2001