OFFSET
1,1
COMMENTS
Take n digits of Pi and read them as hexadecimal digits.
EXAMPLE
314 in hexadecimal is 788 in decimal, so a(3)=788.
MATHEMATICA
With[{dpi=RealDigits[Pi, 10, 100][[1]]}, Table[FromDigits[Take[ dpi, n], 16], {n, 20}]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Mar 08 2012
STATUS
approved