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 A078389 #31 Oct 08 2017 18:12:43 %S A078389 1,1,2,4,8,16,32,60,116,192,384,544,1088,1736,2576,3824,7648,10352, %T A078389 20704,28096,40256,62128,124256,155488,227872,349248,470352,622128, %U A078389 1244256,1499232,2998464,3796224,5289920,8048544,10668096,12562752,25125504 %N A078389 Number of different values obtained by evaluating all different parenthesizations of 1/2/3/4/.../n. %C A078389 a(n) = 2*a(n-1) if n is an odd prime, because (p/q)/n and p/(q/n)=(p/q)*n give exactly two different values for each of the different values p/q from the parenthesizations of 1/.../n-1 and a(n) <= 2*a(n-1) if n is not a prime. - _Alois P. Heinz_, Nov 23 2008 %C A078389 Let M(n) be the smallest integer among the a(n) values. It seems that, for n >= 4, M(n) = A055204, the squarefree part of n!. - _Giovanni Resta_, Dec 16 2012 %H A078389 <a href="/index/Par#parens">Index entries for sequences related to parenthesizing</a> %e A078389 For n=4, ((1/2)/3)/4 = 1/24, (1/2)/(3/4) = 2/3, (1/(2/3))/4 = 3/8, 1/((2/3)/4) = 6 and 1/(2/(3/4)) = 3/8, giving 4 different values 1/24, 3/8, 2/3 and 6. Thus a(4) = 4. %e A078389 a(5) = 2*a(4) = 2*4 = 8, because 5 is a prime; the 8 different values are: 1/120, 3/40, 2/15, 5/24, 6/5, 15/8, 10/3, 30. - _Alois P. Heinz_, Nov 23 2008 %p A078389 p:= proc(n) option remember; local x; %p A078389 if n<1 then {} %p A078389 elif n=1 then {1} %p A078389 elif n=2 then {1/2} %p A078389 else {seq([x/n, x*n][], x=p(n-1))} %p A078389 fi %p A078389 end: %p A078389 a:= n-> nops(p(n)): %p A078389 seq(a(n), n=1..20); # _Alois P. Heinz_, Nov 23 2008 %t A078389 p[0] = {}; p[1] = {1}; p[2] = {1/2}; p[n_] := p[n] = Union[ Flatten[ Table[ {x/n, x*n}, {x, p[n - 1]}]]]; a[n_] := Length[p[n]]; A078389 = Table[an = a[n]; Print[an]; an, {n, 1, 30}] (* _Jean-François Alcover_, Jan 06 2012, after _Alois P. Heinz_ *) %K A078389 nonn,nice %O A078389 1,3 %A A078389 _John W. Layman_, May 07 2003 %E A078389 Corrected a(5)-a(10) and extended a(11)-a(31) by _Alois P. Heinz_, Nov 23 2008 %E A078389 a(32)-a(37) from _Alois P. Heinz_, Mar 07 2011