reviewed
approved
reviewed
approved
proposed
reviewed
editing
proposed
Dmitry Kamenetsky, <a href="https://puzzling.stackexchange.com/questions/97179/first-digit-of-32020/">First digit of 3^2020</a>, Puzzling StackExchange.
approved
editing
editing
approved
f[n_] := Quotient[3^n, 10^Floor[n*Log[10, 3]]]; Table[ f@n, {n, 0, 104}] (* Robert G. Wilson v, Feb 09 2008 *)
proposed
editing
editing
proposed
a(n) = A000030(A000244(n)). - Michel Marcus, Jul 03 2018
proposed
editing
editing
proposed
Harry J. Smith, <a href="/A060956/b060956.txt">Table of n, a(n) for n = 0,...,1000</a>
a(n) = [3^n / 10^([log_10(3^n) ]) ] = [3^n / 10^([n*log_10(3) ]) ].
(PARI) { default(realprecision, 100); for (n=0, 1000, t=log(3)/log(10); write("b060956.txt", n, " ", 3^n \ 10^floor(n*t)); ) } [From _\\ _Harry J. Smith_, Jul 15 2009]
approved
editing