OFFSET
0,1
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = floor(Pi*A341046(n)).
EXAMPLE
a(0)=3 as Pi*1=3.1415... is the smallest multiple of Pi that has zero 0's immediately after the decimal point, and 3 is the integer part.
a(1)=113 as Pi*36=113.09733... is the smallest multiple of Pi that has one 0 immediately after the decimal point, and 133 is the integer part.
a(2)=333 as Pi*106=333.0088212... is the smallest multiple of Pi that has two 0's immediately after the decimal point, and 333 is the integer part.
MATHEMATICA
Table[s=t=0; While[t<=k, t=Abs@Floor@Log[10, Abs@FractionalPart@N[Pi*++s]]]; IntegerPart[s*Pi], {k, 0, 6}] (* Giorgos Kalogeropoulos, Mar 31 2021 *)
PROG
(Magma) See A341046.
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Talha Ali, Feb 04 2021
EXTENSIONS
a(6)-a(8) from Metin Sariyar, Feb 04 2021
More terms from Jon E. Schoenfield, Feb 05 2021
STATUS
approved