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.

A049519 Starting index of a string of exactly 3 consecutive equal digits in decimal expansion of Pi.

Original entry on oeis.org

154, 178, 602, 856, 984, 1233, 1451, 1599, 1699, 1736, 1890, 2279, 2360, 2377, 2441, 2675, 2708, 2929, 2950, 3152, 3435, 3477, 3504, 3810, 3867, 3993, 4001, 4176, 4256, 4436, 4509, 4576, 4794, 4924, 4929, 4986, 5291, 5356, 5404, 5451, 5676, 5872, 6071
Offset: 0

Views

Author

Keywords

Comments

Digits 3,1,4,... are indexed 1,2,3,...

Crossrefs

Programs

  • Mathematica
    e3cdQ[{a_,b_,c_,d_,e_}]:=a!=b&&d!=e&&b==c==d; Flatten[Position[ Partition[ RealDigits[Pi,10,7000][[1]],5,1],?(e3cdQ)]]+1 (* _Harvey P. Dale, Nov 09 2016 *)