OFFSET
1,1
COMMENTS
Take n digits of E and read them as hexadecimal digits.
EXAMPLE
2718 read as hexadecimal number is 10008 in decimal, so a(4) is 10008.
MATHEMATICA
With[{de=RealDigits[E, 10, 100][[1]]}, Table[FromDigits[Take[de, n], 16], {n, 30}]]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Mar 11 2012
STATUS
approved