OFFSET
0,2
REFERENCES
He, Xinwei; Hildebrand, A J; Li, Yuchen; Zhang, Yunyi, Complexity of Leading Digit Sequences, Discrete Mathematics and Theoretical Computer Science; 22 (2020), #14.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..1000
Dmitry Kamenetsky, First digit of 3^2020, Puzzling StackExchange.
FORMULA
a(n) = floor(3^n / 10^floor(log_10(3^n))) = floor( 3^n / 10^floor(n*log_10(3)) ).
MATHEMATICA
First[IntegerDigits[#]]&/@(3^Range[0, 110]) (* Harvey P. Dale, May 16 2016 *)
PROG
(PARI) a(n) = { 3^n \ 10^logint(3^n, 10) } \\ Harry J. Smith, Jul 15 2009
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Ahmed Fares (ahmedfares(AT)my-deja.com), May 08 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
STATUS
approved