OFFSET
1,3
COMMENTS
Conjecture: All even numbers are terms and the only odd numbers which are terms are 1 and 3. - Robert G. Wilson v, Sep 08 2008
EXAMPLE
For n=11, 20 is the 11th composite. So we have a(11) = gcd(1+20, 2+10, 4+5, 5+4, 10+2, 20+1) = 3.
MATHEMATICA
Composite[n_Integer] := FixedPoint[n + PrimePi@# + 1 &, n + PrimePi@n + 1]; f[n_] := Block[{m = Composite@n}, Last@ FoldList[ GCD, m!, # + m/# & /@ Divisors@m]]; Array[f, 105] (* Robert G. Wilson v, Sep 08 2008 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Aug 31 2008
EXTENSIONS
More terms from Robert G. Wilson v, Sep 08 2008
STATUS
approved