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

Reinhard Zumkeller, Table of n, a(n) for n = 0..10000

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

Adjacent sequences: A020948 A020949 A020950 * A020952 A020953 A020954

KEYWORD

nonn

AUTHOR

Clark Kimberling

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 March 25 15:48 EDT 2023. Contains 361528 sequences. (Running on oeis4.)