OFFSET
1,2
COMMENTS
Take n digits of the Golden Ratio and read them as hexadecimal digits.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..500
EXAMPLE
1618 in hexadecimal is 5656 in decimal, so a(4) = 5656.
MATHEMATICA
With[{dgr=RealDigits[GoldenRatio, 10, 100][[1]]}, Table[FromDigits[ Take[ dgr, n], 16], {n, 20}]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Mar 11 2012
STATUS
approved