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!)
A247523 Numbers k such that d(r,k) = d(s,k), where d(x,k) = k-th binary digit of x, r = {golden ratio}, s = {(golden ratio)/2}, and { } = fractional part. 3
1, 3, 5, 6, 7, 9, 10, 12, 15, 16, 19, 20, 21, 23, 25, 28, 29, 31, 35, 36, 37, 38, 39, 40, 44, 49, 51, 52, 53, 54, 56, 57, 58, 59, 65, 66, 67, 68, 70, 72, 73, 75, 77, 78, 80, 82, 84, 85, 86, 87, 88, 89, 91, 93, 94, 95, 96, 97, 101, 102, 104, 106, 107, 110 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Every positive integer lies in exactly one of the sequences A247423 and A247524.
LINKS
EXAMPLE
r has binary digits 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, ...
s has binary digits 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, ...
so that a(1) = 1 and a(2) = 3.
MATHEMATICA
z = 400; r1 = GoldenRatio; r = FractionalPart[r1]; s = FractionalPart[r1/2];
u = Flatten[{ConstantArray[0, -#[[2]]], #[[1]]}] &[RealDigits[r, 2, z]];
v = Flatten[{ConstantArray[0, -#[[2]]], #[[1]]}] &[RealDigits[s, 2, z]];
t = Table[If[u[[n]] == v[[n]], 1, 0], {n, 1, z}];
Flatten[Position[t, 1]] (* A247523 *)
Flatten[Position[t, 0]] (* A247524 *)
CROSSREFS
Sequence in context: A054353 A284555 A031948 * A169957 A165712 A325390
KEYWORD
nonn,easy,base
AUTHOR
Clark Kimberling, Sep 19 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 09:21 EDT 2024. Contains 371967 sequences. (Running on oeis4.)