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!)
A067017 Start with a(0)=1, a(1)=4, a(2)=3, a(3)=2; for n>=3, a(n+1) = mex_i (a(i)+a(n-i)), where mex means smallest nonnegative missing number. 6
1, 4, 3, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0, 0, 0, 5, 1, 1, 1, 1, 1, 6, 2, 2, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, E27.
LINKS
PROG
(Haskell)
import Data.List ((\\))
a067017 n = a067017_list !! n
a067017_list = [1, 4, 3, 2] ++ f [2, 3, 4, 1] where
f xs = mexi : f (mexi : xs) where
mexi = head $ [0..] \\ zipWith (+) xs (reverse xs)
-- Reinhard Zumkeller, May 05 2012
CROSSREFS
Sequence in context: A143543 A176863 A349989 * A258692 A067018 A200233
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Feb 17 2002
EXTENSIONS
More terms from John W. Layman, Feb 20 2002
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 24 12:31 EDT 2024. Contains 371937 sequences. (Running on oeis4.)