login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111355 Consider the sequence defined in A083952 as a binary string of the digits 1 and 2. Then a(n) is the beginning position of the first occurrence of exactly 2n-1 consecutive 2's. 0
2, 4, 222, 154, 754, 204, 14, 246, 1300, 3642 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Strings of ones are always isolated and at an odd position.
LINKS
MATHEMATICA
a[0] = 1; a[l_] := a[l] = Block[{k = 1, s = Sum[ a[i]*x^i, {i, 0, l - 1}]}, While[ IntegerQ[ Last[ CoefficientList[ Series[(s + k*x^l)^(1/2), {x, 0, l}], x]]] != True, k++ ]; k]; p = Flatten[ Position[ Table[ a[n], {n, 0, 4150}], 1]]; f[n_] := Block[{k = n, m = 1}, While[m < Length[p] && p[[m + 1]] - p[[m]] != n, m++ ]; If[m < Length[p] - k, p[[m]] + 1, 0]]; Table[ f[2n], {n, 10}]
CROSSREFS
Cf. A083952.
Sequence in context: A116010 A018677 A173637 * A018706 A111162 A018715
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)