OFFSET
1,1
REFERENCES
Albert H. Beiler, Recreations in the Theory of Numbers, 2nd ed., pages 10, 23. New York: Dover, 1966. ISBN 0-486-21096-0.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
The third composite number is 8, for which the product of aliquot divisors is 4*2*1 = 8, so a(3)=8.
MATHEMATICA
Composite[n_] := FixedPoint[n + PrimePi[ # ] + 1 &, n + PrimePi[n] + 1]; Table[ Times @@ Select[ Divisors[ Composite[n]], # < Composite[n] & ], {n, 1, 60} ]
pd[n_] := n^(DivisorSigma[0, n]/2 - 1); pd /@ Select[Range[100], CompositeQ] (* Amiram Eldar, Sep 07 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
a(33) inserted by Amiram Eldar, Sep 07 2019
STATUS
approved