OFFSET
1,1
COMMENTS
phi^2-phi=1, so phi^2 and phi have the same digits after the decimal point. Can someone find a number k in which the n-th digit after the decimal point in k^n is constant or follows a pattern?
MATHEMATICA
a[n_] := Block[{rd = RealDigits[ GoldenRatio^n, 10, 200]}, rd[[1, rd[[2]] + n]]]; Table[ a[n], {n, 105}] (* Robert G. Wilson v, Jul 19 2005 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, Jul 16 2005
EXTENSIONS
More terms from Robert G. Wilson v, Jul 19 2005
STATUS
approved