OFFSET
1,15
COMMENTS
LINKS
Toshitaka Suzuki, Table of n, a(n) for n = 1..610
Harry Ruderman and Paul Erdős, Problem E2427: Bounds of Egyptian fraction partitions of unity, Amer. Math. Monthly, Vol. 81, No. 7 (1974), 780-782.
EXAMPLE
a(6) = 1 since there is the only fraction 1 = 1/2+1/3+1/6.
MATHEMATICA
n=20; try2[lev_, s_] := Module[{nmim, nmax, si, i}, AppendTo[soln, 0]; If[lev==1, nmin=2, nmin=1+soln[[ -2]]]; nmax=n-1; Do[If[i<n/2 || !PrimeQ[i], si=s+1/i; If[si==1, soln[[ -1]]=i; (*Print[soln]; *) cnt++ ]; If[si<1, soln[[ -1]]=i; try2[lev+1, si]]], {i, nmin, nmax}]; soln=Drop[soln, -1]]; soln={n}; cnt=0; try2[1, 1/n]; cnt (* T. D. Noe, Mar 26 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Max Alekseyev, Mar 02 2004
EXTENSIONS
More terms from T. D. Noe, Mar 26 2004
More terms from T. Suzuki (suzuki(AT)scio.co.jp), Nov 24 2006
STATUS
approved