VOOZH about

URL: https://oeis.org/A231325

⇱ A231325 - OEIS


login
A231325
Larger of corresponding digits of Pi and e.
5
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,1
LINKS
EXAMPLE
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...
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 *)
CROSSREFS
KEYWORD
nonn,cons,base
AUTHOR
Umut Uludag, Nov 07 2013
STATUS
approved