OFFSET
1,1
COMMENTS
"Least" is required in the definition, otherwise a(14) could be either 2 or 5 because 2*77636318760 and 5*77636318760 have the same abundancy. It appears that only a(14) has this property. - T. D. Noe, Jan 24 2010
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..10000
The Prime Glossary, Abundant Numbers.
Eric Weisstein's World of Mathematics, Abundancy.
EXAMPLE
a(4)=2 since the product a(1)*a(2)*a(3) is 2*3*5=30, and
30*2 = 60 has abundancy 2.8, whereas
30*3 = 90 has abundancy 2.6,
30*5 = 150 has abundancy 2.48,
30*7 = 210 has abundancy 2.7428571..., etc.
MATHEMATICA
Abundancy[k_Integer] := DivisorSigma[1, k]/k; SetAttributes[Abundancy, Listable]; nn=100; lastPrime=1; n=1; Table[a=Abundancy[n*Prime[Range[lastPrime+1]]]; pos=Position[a, Max[a]]; p=Prime[pos[[1, 1]]]; If[pos[[1, 1]>lastPrime, lastPrime++ ]; n=n*p; p, {nn}] (* T. D. Noe, Jan 24 2010 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Sergio Pimentel, Feb 11 2008
EXTENSIONS
Edited by T. D. Noe, Jan 24 2010
Extended by T. D. Noe, Jan 24 2010
Edited by Jon E. Schoenfield, Mar 02 2019
STATUS
approved