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!)
A105165 Expansion of e in base phi. 1
1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
3
LINKS
Chittaranjan Pardeshi, 100,000 digits of e in base phi
EXAMPLE
100.0000100001001000000001000...
MATHEMATICA
RealDigits[E, GoldenRatio, 111][[1]] (* Robert G. Wilson v, Feb 26 2010 *)
PROG
(PARI)
alist(len) = {
my(phi = quadgen(5), n=1, f=1, r=1/f, e=1+1, hi=e+r, t=0, w=phi^3);
vector(len, i,
w/=phi;
while ( t+w < hi && t+w > e,
n += 1;
f *= n;
r = 1/f;
e += r;
hi = e+r;
);
if (t+w <= e, t += w; 1, 0))};
alist(1000) \\ Chittaranjan Pardeshi, May 22 2022
CROSSREFS
Sequence in context: A015087 A082784 A369643 * A058342 A205808 A238897
KEYWORD
base,nonn
AUTHOR
Bryan Jacobs (bryanjj(AT)gmail.com), Apr 10 2005
EXTENSIONS
Corrected by Arkadiusz Wesolowski, Sep 30 2011
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 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)