login
A208935
Digits of Pi read in decimal as if written in hexadecimal.
2
3, 49, 788, 12609, 201749, 3227993, 51647890, 826366246, 13221859941, 211549759059, 3384796144949, 54156738319192, 866507813107081, 13864125009713303, 221826000155412857, 3549216002486605715, 56787456039785691442, 908599296636571063075
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