OFFSET
1,1
FORMULA
a(n+1) = floor(10^n * Pi) * floor(10^n * e). - Charles R Greathouse IV, Oct 21 2014
a(n) ~ Pi*e/100 * 100^n + O(10^n). - Charles R Greathouse IV, Oct 21 2014
EXAMPLE
The first digit of Pi is 3, the first digit of e is 2, and 2 times 3 = 6, so a(1) = 6. The first two digits of Pi are 31, the first two digits of e are 27, and 31 times 27 = 837, so a(2) = 837.
MATHEMATICA
Module[{nn=20, p, e}, p=RealDigits[Pi, 10, nn][[1]]; e=RealDigits[E, 10, nn][[1]]; Table[FromDigits[Take[p, n]]FromDigits[Take[e, n]], {n, nn}]]
PROG
(PARI) a(n)=n--; floor(10^n * Pi) * floor(10^n * exp(1)) \\ Charles R Greathouse IV, Oct 21 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Harvey P. Dale, Oct 21 2014
STATUS
approved