A049519 Starting index of a string of exactly 3 consecutive equal digits in decimal expansion of Pi.
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
Links
- Harvey P. Dale, Table of n, a(n) for n = 0..1000
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 *)
Comments