login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A030598
Length of n-th run of digit 3 in A030588.
6
1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 2, 5, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
OFFSET
1,5
LINKS
PROG
(PARI)
up_to = 20000;
A030598list(up_to, d=3) = { my(v=vector(up_to), ds=List([]), o=1, j=1, rl=0, i=0); while(i<up_to, if(j>#ds, ds=digits(o, 6); j=1; o+=2); if(d==ds[j], rl++, if(rl, i++; v[i] = rl; rl=0)); j++); (v); };
v030598 = A030598list(up_to);
A030598(n) = v030598[n]; \\ Antti Karttunen, Dec 24 2018
CROSSREFS
KEYWORD
nonn,base
STATUS
approved