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!)
A352679 Expansion of sqrt(3) in base phi where phi = (1+sqrt(5))/2. 0
1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
2
LINKS
FORMULA
sqrt(3) = phi + 1/phi^5 + 1/phi^8 + 1/phi^13 + 1/phi^16 + ...
EXAMPLE
10.00001001000010010100000101010010000001010100001010101... base phi.
MATHEMATICA
RealDigits[Sqrt[3], GoldenRatio, 90][[1]] (* Harvey P. Dale, Dec 04 2022 *)
PROG
(PARI)
alist(len) = {
my(phi = quadgen(5), w=phi^2, t = 0);
vector(len, i,
w /= phi;
if ( ( t + w )^2 <= 3,
t += w;
1,
0))
};
print(alist(300));
CROSSREFS
Sequence in context: A089010 A162289 A122276 * A239199 A265718 A267463
KEYWORD
nonn,cons,base
AUTHOR
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 16:39 EDT 2024. Contains 371989 sequences. (Running on oeis4.)