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!)
A056791 Weight of binary expansion of n + length of binary expansion of n. 6

%I #35 Nov 02 2022 11:53:49

%S 1,2,3,4,4,5,5,6,5,6,6,7,6,7,7,8,6,7,7,8,7,8,8,9,7,8,8,9,8,9,9,10,7,8,

%T 8,9,8,9,9,10,8,9,9,10,9,10,10,11,8,9,9,10,9,10,10,11,9,10,10,11,10,

%U 11,11,12,8,9,9,10,9,10,10,11,9,10,10,11,10,11,11,12,9,10,10,11,10,11,11

%N Weight of binary expansion of n + length of binary expansion of n.

%H Michael De Vlieger, <a href="/A056791/b056791.txt">Table of n, a(n) for n = 0..16384</a>

%H Ralf Stephan, <a href="/somedcgf.html">Some divide-and-conquer sequences ...</a>

%H Ralf Stephan, <a href="/A079944/a079944.ps">Table of generating functions</a>

%H <a href="/index/Com#complexity">Index to sequences related to the complexity of n</a>

%F a(n) = a((n - n mod 2) / (2 - n mod 2)) + 1 for n>0, a(0)=1. - _Reinhard Zumkeller_, Jul 29 2002

%F a(2n) = a(n)+1, a(2n+1) = a(n)+2. G.f.: 1 + 1/(1-x) * sum(k>=0, (2t+t^2)/(1+t), t=x^2^k). For n>0, a(n) = 2*A000120(n) + A080791(n) = A000120(n) + A029837(n). - _Ralf Stephan_, Jun 14 2003

%e 12 = 1100 in binary, so a(12)=2+4=6.

%t Table[If[n==0,1,s=IntegerDigits[n,2];Total@s+Length@s],{n,0,100}] (* _Giorgos Kalogeropoulos_, Sep 13 2021 *)

%o (PARI) a(n) = if (n==0, 1, my(b=binary(n)); vecsum(b) + #b); \\ _Michel Marcus_, Sep 13 2021

%o (Python)

%o def a(n): b = bin(n)[2:]; return b.count('1') + len(b)

%o print([a(n) for n in range(87)]) # _Michael S. Branicky_, Sep 13 2021

%Y Equals A056792 + 1.

%Y Equals A014701 + 2.

%Y Cf. A061313, A037861.

%K nonn,easy,base

%O 0,2

%A _N. J. A. Sloane_, Sep 01 2000

%E More terms from _James A. Sellers_, Sep 06 2000 and from _David W. Wilson_, Sep 07 2000

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)