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!)
A151847 a(0)=1; a(1)=0; a(2)=1; for n>=3 if n=2^i + j with 0<=j<2^i then a(n)=a(j) + a(j + 1) except we add 1 if j=2^i-1. 2
1, 0, 1, 2, 1, 1, 3, 4, 1, 1, 3, 3, 2, 4, 7, 6, 1, 1, 3, 3, 2, 4, 7, 5, 2, 4, 6, 5, 6, 11, 13, 8, 1, 1, 3, 3, 2, 4, 7, 5, 2, 4, 6, 5, 6, 11, 13, 7, 2, 4, 6, 5, 6, 11, 12, 7, 6, 10, 11, 11, 17, 24, 21, 10, 1, 1, 3, 3, 2, 4, 7, 5, 2, 4, 6, 5, 6, 11, 13, 7, 2, 4, 6, 5, 6, 11, 12, 7, 6, 10, 11, 11, 17, 24, 21 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
I would very much like a g.f. for this sequence!
MAPLE
f:= proc(n) option remember; local i, j;
i:= ilog2(n);
j:= n - 2^i;
if j = 2^i-1 then procname(j)+procname(j+1)+1
else procname(j)+procname(j+1)
fi
end proc:
f(0):= 1: f(1):=0: f(2):= 1:
map(f, [$0..100]); # Robert Israel, Oct 30 2017
CROSSREFS
Sequence in context: A300508 A120013 A344180 * A349593 A179743 A113749
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 17 2009
EXTENSIONS
Name corrected by Robert Israel, Oct 30 2017
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 07:44 EDT 2024. Contains 371922 sequences. (Running on oeis4.)