OFFSET
1,2
COMMENTS
The next term would have to divide 61, but 1 and 61 are both already used. - Franklin T. Adams-Watters, Oct 23 2015
EXAMPLE
After 46 and 53 the term is 33 and not 1,3,9 or 11 as they have already been included. 33 divides 46+53 = 99.
MAPLE
a[1]:= 1:
a[2]:= 2:
for n from 3 do
r:= min(numtheory:-divisors(a[n-1]+a[n-2]) minus {seq(a[i], i=1..n-1)});
if r = infinity then break fi;
a[n]:= r
od:
seq(a[i], i=1..n-1); # Robert Israel, Oct 25 2015
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jul 14 2003
EXTENSIONS
More terms from David Wasserman, Feb 14 2005
Name corrected by Franklin T. Adams-Watters, Oct 23 2015
STATUS
approved