OFFSET
1,2
LINKS
Kurt Van den Branden, More digits
FORMULA
a(n) = floor((Pi-3)*10^n). G.f.: (f(x)-3*x)/(x-10*x^2) where f(x) is the G.f. of A000796. - Robert Israel, Oct 06 2014
MAPLE
A039916 := proc(n)
Digits := n+4 ;
10^n*evalf(Pi-3) ;
floor(%) ;
end proc:
seq(A039916(n), n=1..10) ; # R. J. Mathar, Oct 04 2014
MATHEMATICA
With[{pids=Rest[RealDigits[\[Pi], 10, 40][[1]]]}, Table[FromDigits[Take[ pids, n]], {n, 20}]] (* Harvey P. Dale, Mar 09 2011 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
STATUS
approved