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!)
A244331 Number of binary digits in the high-water marks of the terms of the continued fraction of the base-2 Champernowne constant. 3
0, 1, 3, 9, 23, 53, 115, 241, 495, 1005, 2027, 4073, 8167, 16357, 32739, 65505, 131039, 262109, 524251, 1048537, 2097111, 4194261, 8388563, 16777169 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Conjecture: partial sums of A296965 (equivalent to observation about A183155 below). - Sean A. Irvine, Jul 16 2022
LINKS
FORMULA
It appears that for n >= 4, a(n) = 2^n - 2*n + 1 = A183155(n-1).
Also it appears that if we define NCD(N) = (Sum_{m=1..N} m*2^(m-1)) - N, then for n >= 4, a(n) = NCD(n) - 2*NCD(n-1) - 3*n + 4.
PROG
(Ruby) puts (4..24).collect{|n| 2**n-2*n+1}
(Ruby) puts (4..24).collect {|n| (1..n).inject(0) {|sum, m| sum+m*2**(m-1)}-n-2*((1..(n-1)).inject(0) {|sum1, m1| sum1+m1*2**(m1-1)}-(n-1))-3*n+4}
CROSSREFS
Sequence in context: A005783 A263330 A146440 * A183155 A305168 A274099
KEYWORD
base,nonn,more
AUTHOR
John K. Sikora, Jun 27 2014
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 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)