|
| |
|
|
A105424
|
|
The part of n in base phi left of the decimal, using a greedy algorithm representation.
|
|
6
| |
|
|
0, 1, 10, 100, 101, 1000, 1010, 10000, 10001, 10010, 10100, 10101, 100000, 100010, 100100, 100101, 101000, 101010, 1000000, 1000001, 1000010, 1000100, 1000101, 1001000, 1001010, 1010000, 1010001, 1010010, 1010100, 1010101, 10000000
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
LINKS
| T. D. Noe, Table of n, a(n) for n = 0..1000
R. Knott, Phigits and the Base Phi representation.
|
|
|
EXAMPLE
| 2 = 10.01 in base phi. left of the decimal is 10.
|
|
|
MATHEMATICA
| nn = 1000; len = 2*Ceiling[Log[GoldenRatio, nn]]; Table[d = RealDigits[n, GoldenRatio, len]; FromDigits[Take[d[[1]], d[[2]]]], {n, 0, nn}] (* T. D. Noe, May 20 2011 *)
|
|
|
CROSSREFS
| Cf. A055778, A105425, A104605.
Sequence in context: A185101 A007924 A115794 * A115832 A169665 A052009
Adjacent sequences: A105421 A105422 A105423 * A105425 A105426 A105427
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Bryan Jacobs (bryanjj(AT)gmail.com), Apr 08 2005
|
| |
|
|