OFFSET
1,1
COMMENTS
Partition of decimal expansion of Pi into non-overlapping sublists of length 3.
Because leading digits may be zero, not all terms have three decimal digits. The first two-digit term is a(19) and the first one-digit term is a(121). - Harvey P. Dale, Aug 21 2020
MATHEMATICA
Table[FromDigits[Partition[RealDigits[N[Pi, 201]][[1]], 3][[i]]], {i, 67}]
FromDigits/@Partition[RealDigits[Pi, 10, 200][[1]], 3] (* Harvey P. Dale, Aug 21 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zak Seidov, May 12 2005
EXTENSIONS
Definition modified by Harvey P. Dale, Aug 21 2020
STATUS
approved