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!)
A116648 Least natural number which does not occur in A116626(1..n). 5
2, 2, 4, 4, 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 9, 9, 11, 11, 11, 11, 11, 11, 18, 18, 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, 27, 27, 27, 27, 27, 27, 27, 27, 29, 29, 29, 29, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 39, 39, 39, 39, 42, 42, 42, 42, 44, 44, 44, 44 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(MIT Scheme:) (define (A116648 n) (if (< n 2) (+ n 1) (let ((prev (A116648 (- n 1)))) (cond ((not (= (A116626 n) prev)) prev) (else (let loop ((i (+ 1 prev))) (cond ((> (A116627 i) n) i) (else (loop (+ 1 i))))))))))
CROSSREFS
Sequence in context: A300755 A307825 A347660 * A152850 A036714 A319398
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 21 2006
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)