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”).

Positions of 3's in A306211.
4

%I #12 Jul 19 2022 08:03:37

%S 37,52,58,76,82,91,115,121,130,145,177,183,192,207,230,257,275,281,

%T 290,305,328,355,364,391,404,410,416,431,437,446,461,484,511,520,547,

%U 560,566,572,578,605,618,624,630,640,646,654,678,684,693,708,731,758,767

%N Positions of 3's in A306211.

%H Rémy Sigrist, <a href="/A323476/b323476.txt">Table of n, a(n) for n = 1..25000</a>

%H Rémy Sigrist, <a href="/A323476/a323476.txt">C program for A323476</a>

%t seq[n_] := seq[n] = If[n==1, {1}, Join[seq[n-1], Length /@ Split[seq[n-1]]] ];

%t Position[seq[26], 3] // Flatten (* _Jean-François Alcover_, Jul 19 2022 *)

%o (C) See Links section.

%Y Cf. A306211, A306222, A306223.

%K nonn

%O 1,1

%A _N. J. A. Sloane_, Jan 29 2019