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

A233445
Start of record runs with lambda(k) = lambda(k+1) = ..., where lambda is Liouville's function A008836.
1
1, 2, 11, 17, 27, 140, 213, 1934, 13871, 38405, 171707, 200938, 389409, 1633357, 5460156, 8405437, 41983357, 68780189, 179376463, 130292951546, 393142151459, 2100234982892, 5942636062287
OFFSET
1,2
EXAMPLE
Lambda(1) = 1 is the first (record) run, so a(1) = 1.
Lambda(2) = lambda(3) = -1 is the second record run, so a(2) = 2.
Lambda(11) = lambda(12) = lambda(13) = -1 is the third record run, so a(3) = 11.
MATHEMATICA
sz[n_] := Module[{t = LiouvilleLambda[n], k = n}, While[LiouvilleLambda[k++] == t]; k - n]; r = 0; Reap[For[n = 1, n <= 10^6, n++, t = sz[n]; If[t > r, r = t; Print[t, " ", n]; Sow[n]]]][[2, 1]] (* Jean-François Alcover, Oct 17 2016, adapted from PARI *)
PROG
(PARI) L(n)=(-1)^bigomega(n);
sz(n)=my(t=L(n), k=n); while(L(k++)==t, ); k-n
r=0; for(n=1, 1e9, t=sz(n); if(t>r, r=t; print(t" "n)))
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved