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.
%I A230497 #12 Aug 03 2023 03:45:33 %S A230497 5,23,71,85,89,163,225,225,225,225,6075,6075,9859,9859,9859,9859,9859, %T A230497 9859,5031037,10430265,11896187,11896187,11896187,22402429,340713205, %U A230497 570919625,570919625,570919625,1496195709,1496195709,1496195709,5743845611,8271306199,8271306199,8271306199 %N A230497 a(n), n>=2, is the minimal odd evil k, such that k^i, i=2,3,...,n, all are odious, and a(n)=0, if there is no such k. %C A230497 A conjugate sequence to A230495 and A230496. %C A230497 Conjecture: For all n, a(n) > 0. %t A230497 odQ[n_] := OddQ[DigitCount[n, 2, 1]]; odExp[n_] := Module[{e = 1, p = n^2}, If[! odQ[n], While[odQ[p], p *= n; e++]]; e]; seq[nmax_] := Module[{e, emax = 1, n = 3, s = {}}, Do[e = odExp[n]; If[e > emax, s = Join[s, ConstantArray[n, e - emax]]; emax = e], {n, 3, nmax, 2}]; s]; seq[10000] (* _Amiram Eldar_, Aug 03 2023 *) %Y A230497 Cf. A000069, A001969, A230454, A230495, A230496. %K A230497 nonn,base %O A230497 2,1 %A A230497 _Vladimir Shevelev_ and _Peter J. C. Moses_, Oct 21 2013 %E A230497 a(26)-a(36) from _Amiram Eldar_, Aug 03 2023