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.

A104826 Primes from merging of 6 successive digits in decimal expansion of Pi.

Original entry on oeis.org

314159, 358979, 589793, 462643, 971693, 169399, 592307, 348253, 534211, 808651, 844609, 822317, 725359, 502841, 102701, 288109, 612847, 337867, 104543, 815209, 925409, 917153, 665213, 951941
Offset: 1

Views

Author

Zak Seidov, Mar 27 2005

Keywords

Comments

Leading zeros are not permitted, so each term is 6 digits in length. - Harvey P. Dale, Oct 23 2011

Crossrefs

Programs

  • Mathematica
    With[{len=6},FromDigits/@Select[Partition[RealDigits[Pi,10,1000][[1]], len,1],PrimeQ[FromDigits[#]]&&IntegerLength[FromDigits[#]]==len&]] (* Harvey P. Dale, Oct 23 2011 *)