A231325 Larger of corresponding digits of Pi and e.
3, 7, 4, 8, 5, 9, 2, 8, 5, 8, 5, 8, 9, 7, 9, 5, 2, 3, 8, 4, 6, 2, 6, 8, 7, 4, 8, 3, 3, 7, 9, 6, 6, 2, 8, 9, 7, 7, 9, 7, 2, 6, 9, 3, 9, 9, 6, 9, 9, 9, 5, 9, 8, 7, 4, 9, 7, 6, 9, 6, 7, 6, 9, 7, 7, 2, 7, 8, 7, 6, 6, 3, 6, 3, 8, 6, 5, 4, 8, 9, 9, 8, 6, 7, 8, 3, 8
Offset: 1
Examples
1st digit of Pi and e are 3 and 2, so a(1) = max(3,2) = 3. 2nd digit of Pi and e are 1 and 7, so a(2) = max(1,7) = 7. 3rd digit of Pi and e are 4 and 1, so a(3) = max(4,1) = 4. 3.74859285858979523846268748337966289779726939969995987...
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Module[{nn=100,pd,ed},pd=RealDigits[Pi,10,nn][[1]];ed=RealDigits[E,10,nn][[1]];Max/@Thread[{pd,ed}]] (* Harvey P. Dale, Feb 10 2022 *)