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!)
A020951 a(2n+1)=a(n), a(2n)=a(n)+a(n-1). 4
1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 2, 1, 2, 1, 1, 0, 1, 1, 2, 1, 3, 2, 3, 1, 3, 2, 3, 1, 2, 1, 1, 0, 1, 1, 2, 1, 3, 2, 3, 1, 4, 3, 5, 2, 5, 3, 4, 1, 4, 3, 5, 2, 5, 3, 4, 1, 3, 2, 3, 1, 2, 1, 1, 0, 1, 1, 2, 1, 3, 2, 3, 1, 4, 3, 5, 2, 5, 3, 4, 1, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,11
LINKS
PROG
(Haskell)
a020951 n = a020951_list !! n
a020951_list = 1 : ws where
ws = 0 : 1 : concat (zipWith (\u v -> [u, u + v]) ws $ tail ws)
-- Reinhard Zumkeller, Jul 19 2013, Mar 13 2013
CROSSREFS
Cf. A082498.
Sequence in context: A063995 A280737 A322305 * A117118 A117168 A355343
KEYWORD
nonn
AUTHOR
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 May 9 01:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)