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!)
A046695 Sprague-Grundy values for the game Couples-are-Forever (and for octal games .6, .601, .61, .611, .62, .621, .63, .631). 3
0, 0, 1, 2, 0, 1, 2, 3, 1, 2, 3, 4, 0, 3, 4, 2, 1, 3, 2, 1, 0, 2, 1, 4, 5, 1, 4, 5, 1, 2, 0, 1, 2, 3, 1, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 1, 0, 2, 8, 4, 5, 3, 4, 5, 6, 2, 5, 1, 2, 3, 1, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 0, 2, 3, 4, 5, 3, 4, 5, 6, 4, 5, 6, 2, 3, 1, 2, 3, 4, 2, 3, 4, 2, 3, 4, 2, 3, 0, 2, 3, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
I. Caines et al., Periods in taking and splitting games, Amer. Math. Monthly, 106 (1999), 359-361.
FORMULA
a(n) = A071433(n-1). - Typo corrected by Allan C. Wechsler, Oct 24 2014
PROG
(Haskell)
nimSum 0 0 = 0
nimSum a 0 = a
nimSum 0 b = b
nimSum a b = 2*(nimSum (div a 2) (div b 2)) + (rem ((rem a 2) + (rem b 2)) 2)
mexp l = head (filter (\x -> (not (elem x l))) [0..])
a046695_list = map a046695 [0..]
a046695 0 = 0
a046695 1 = 0
a046695 n = mexp (a046695' n)
a046695' n = (map trymove [0..(div (n-1) 2)])
where trymove k = nimSum (a046695_list !! k) (a046695_list !! (n-k-1))
-- Allan C. Wechsler, Nov 18 2014
CROSSREFS
Cf. A071433.
Sequence in context: A309816 A071486 A336684 * A071433 A110657 A071512
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited and extended by Christian G. Bower, Oct 22 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 August 11 23:45 EDT 2024. Contains 375082 sequences. (Running on oeis4.)