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.

A228241 Log 10-primes: primes in the initial decimal digits of log(10).

Original entry on oeis.org

2, 23, 2302585092994045684017991454684364207601
Offset: 1

Views

Author

Eric W. Weisstein, Aug 17 2013

Keywords

Comments

The next term (a(4)) has 242 digits. - Harvey P. Dale, Sep 13 2021

Crossrefs

Cf. A228240 (integer lengths of log(10)-primes).
Cf. A002392 (decimal expansion of log(10)).

Programs

  • Mathematica
    Module[{nn=500,l10},l10=RealDigits[Log[10],10,nn][[1]];Select[ Table[ FromDigits[ Take[l10,n]],{n,nn}],PrimeQ]] (* Harvey P. Dale, Sep 13 2021 *)