OFFSET
1,1
COMMENTS
Is this sequence finite?
MATHEMATICA
b[n_] := Table[If[PrimeQ[i], 1, 0], {i, 1, n}];
tab = Table[Min@Table[b[n].RotateRight[Reverse[b[n]], j], {j, 0, n - 1}], {n, 1, 2^12}]; (* to explore the first 2^12 subsequences *)
Flatten[Position[tab, 1]]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Andres Cicuttin, Oct 11 2020
STATUS
approved