cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A356855 a(n) is the least number m such that u defined by u(i) = bigomega(m + 2i) satisfies u(i) = u(0) for 0 <= i < n and u(n) != u(0), or -1 if no such number exists.

This page as a plain text file.
%I A356855 #110 Oct 24 2022 00:09:29
%S A356855 1,4,3,215,213,1383,3091,8129,151403,151401,2560187,33396293,33396291,
%T A356855 56735777,1156217487,2514196079
%N A356855 a(n) is the least number m such that u defined by u(i) = bigomega(m + 2i) satisfies u(i) = u(0) for 0 <= i < n and u(n) != u(0), or -1 if no such number exists.
%e A356855 Let u be defined by u(i) = bigomega(3 + 2i). u(i) = 1 for 0 <= i < 3 and u(3) = 2 != 1, and 3 is the smallest such number, hence a(3) = 3.
%e A356855 Let u be defined by u(i) = bigomega(4 + 2i). u(i) = 2 for 0 <= i < 2 and u(3) = 3 != 2 , and 4 is the smallest such number, hence a(2) = 4.
%e A356855 Let u be defined by u(i) = bigomega(151403 + 2i). u(i) = 3 for 0 <= i < 9 and u(9) = 2 != 3, and 151403 is the smallest such number, hence a(9) = 151403.
%o A356855 (PARI) u(m,i)=bigomega(m+2*i)
%o A356855 card(m)=my(k=u(m,0),c=0);while(u(m,c)==k,c++);c
%o A356855 a(n)=my(c=0);for(m=1,+oo,c=card(m);if(c==n,return(m)))
%Y A356855 Cf. A113752, A356893.
%Y A356855 Cf. A073093 and A091304 (the 2 bisections of A001222).
%K A356855 nonn,more
%O A356855 1,2
%A A356855 _Jean-Marc Rebert_, Sep 04 2022