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.

A228127 Numbers n such that first n digits of A091724 (Decimal expansion of E^(2*EulerGamma)) gives a prime number.

Original entry on oeis.org

1, 2, 3, 1080
Offset: 1

Views

Author

Robert Price, Aug 26 2013

Keywords

Comments

a(5) > 10^4.

Crossrefs

Cf. A091724.

Programs

  • Mathematica
    nn=1100;With[{c=RealDigits[E^(2*EulerGamma),10,nn][[1]]},Select[ Range[ nn], PrimeQ[FromDigits[Take[c,#]]]&]] (* Harvey P. Dale, Nov 13 2014 *)