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.

Showing 1-2 of 2 results.

A083637 Starting positions of strings of three 8's in the decimal expansion of Pi.

Original entry on oeis.org

4751, 4752, 4985, 5871, 6070, 6850, 9338, 10229, 10527, 14298, 16763, 16910, 17164, 18483, 19469, 19752, 20337, 20807, 21225, 22192, 22216, 22770, 23079, 25062, 25196, 26886, 27750, 30086, 30633, 30687, 30796, 30797, 32251, 33850, 35639
Offset: 1

Views

Author

Rick L. Shepherd, May 05 2003

Keywords

Crossrefs

Cf. A050263 (two 8's), A083638 (four 8's).

Programs

  • Mathematica
    q=9!;z=8;a=RealDigits[Pi,10,q];lst={};Do[b=a[[1]][[n]];c=a[[1]][[n+1]];d=a[[1]][[n+2]];If[b==z&&c==z&&d==z,AppendTo[lst,n-1]],{n,q-2}];lst (* Vladimir Joseph Stephan Orlovsky, Jun 19 2009 *)
    SequencePosition[RealDigits[Pi,10,36000][[1]],{8,8,8}][[All,1]]-1 (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 02 2018 *)

A083639 Starting positions of strings of five 8's in the decimal expansion of Pi.

Original entry on oeis.org

213245, 222299, 222300, 493647, 511304, 564317, 730833, 747413, 1067285, 1096077, 1361157, 2116963, 2272190, 2356344, 2418533, 2418534, 2540169, 2960664, 3019042, 3019043, 3129868, 3147134, 3147135, 3186070, 3206838, 3604524, 3604525, 3731764, 3754082, 3908785
Offset: 1

Views

Author

Rick L. Shepherd, May 05 2003

Keywords

Comments

Positions counted from and after the decimal point. - Harvey P. Dale, May 08 2023

Crossrefs

Cf. A083638 (four 8's), A083640 (six 8's).

Programs

  • Mathematica
    SequencePosition[RealDigits[Pi,10,4*10^6][[1]],{8,8,8,8,8}][[;;,1]]-1 (* Harvey P. Dale, May 08 2023 *)

Extensions

More terms from Jinyuan Wang, Mar 01 2020
Showing 1-2 of 2 results.