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.

A198171 Primes from merging of 7 successive digits in decimal expansion of Pi forbidding leading zeros.

Original entry on oeis.org

1592653, 6535897, 2643383, 5028841, 6939937, 3993751, 1170679, 8086513, 5822317, 1725359, 4930381, 2881097, 4612847, 3165271, 2712019, 1201909, 4914127, 1133053, 3841469, 1469519, 6951941, 9433057, 9326117, 4462379, 2749567, 5272489, 8912279, 8183011
Offset: 1

Views

Author

Harvey P. Dale, Oct 21 2011

Keywords

Comments

Leading zeros are not permitted, so each term is 7 digits in length.

Crossrefs

Programs

  • Mathematica
    With[{len=7},Select[FromDigits/@Partition[RealDigits[Pi,10,1000][[1]], len,1], IntegerLength[#]==len&&PrimeQ[#]&]]