login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A085947 a(1) = 1, a(2) = 2 and a(n) = smallest number not included earlier that divides the sum of the two previous terms. 7
1, 2, 3, 5, 4, 9, 13, 11, 6, 17, 23, 8, 31, 39, 7, 46, 53, 33, 43, 19, 62, 27, 89, 29, 59, 22, 81, 103, 92, 15, 107, 61, 12, 73, 85, 79, 41, 10, 51 (list; graph; refs; listen; history; text; internal format)
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
LINKS
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
Cf. A085946.
Sequence in context: A124653 A365642 A353082 * A328444 A332301 A360281
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 00:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)