cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A231325 Larger of corresponding digits of Pi and e.

Original entry on oeis.org

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

Views

Author

Umut Uludag, Nov 07 2013

Keywords

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...
		

Crossrefs

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 *)