A293079 Decimal expansion of log_Pi(3).
9, 5, 9, 7, 1, 3, 1, 1, 8, 5, 6, 9, 3, 9, 0, 0, 1, 9, 3, 3, 6, 0, 2, 3, 1, 9, 8, 8, 4, 3, 5, 0, 0, 6, 5, 4, 9, 4, 2, 2, 4, 7, 4, 3, 5, 6, 3, 9, 5, 7, 5, 3, 4, 5, 5, 1, 1, 0, 4, 5, 7, 2, 7, 7, 0, 6, 7, 3, 9, 1, 3, 7, 6, 7, 3, 2, 8, 1, 9, 1, 9, 9, 8, 7, 9, 2, 7, 1, 5, 8, 0, 3, 8, 0, 0, 1, 8, 8, 1, 4
Offset: 0
Examples
0.959713118569390019336023198...
Programs
-
Mathematica
RealDigits[Log[Pi,3],10,120][[1]] (* Harvey P. Dale, Apr 09 2021 *)
-
PARI
log(3)/log(Pi) \\ Michel Marcus, Sep 30 2017
-
Python
from math import log, pi print(log(3,pi))