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 A180278 #60 Jul 25 2024 11:18:31 %S A180278 0,1,3,13,47,447,2163,24263,241727,2923783,16485763,169053487, %T A180278 4535472963,36316463227,879728844873,4476534430363,119919330795347, %U A180278 1374445897718223,106298577886531087 %N A180278 Smallest nonnegative integer k such that k^2 + 1 has exactly n distinct prime factors. %F A180278 a(n) >= sqrt(A185952(n)-1). - _Charles R Greathouse IV_, Feb 17 2015 %F A180278 a(n) <= A164511(n). - _Daniel Suteu_, Feb 20 2023 %e A180278 a(2) = 3 because the 2 distinct prime factors of 3^2 + 1 are {2, 5}; %e A180278 a(10) = 16485763 because the 10 distinct prime factors of 16485763^2 + 1 are {2, 5, 13, 17, 29, 37, 41, 73, 149, 257}. %t A180278 a[n_] := a[n] = Module[{k = 1}, If[n == 0, Return[0]]; Monitor[While[PrimeNu[k^2 + 1] != n, k++]; k, {n, k}]]; Table[a[n], {n, 0, 8}] (* _Robert P. P. McKone_, Sep 13 2023 *) %o A180278 (Python) %o A180278 from itertools import count %o A180278 from sympy import factorint %o A180278 def A180278(n): %o A180278 return next(k for k in count() if len(factorint(k**2+1)) == n) # _Pontus von Brömssen_, Sep 12 2023 %o A180278 (PARI) a(n)=for(k=0, oo, if(omega(k^2+1) == n, return(k))) \\ _Andrew Howroyd_, Sep 12 2023 %Y A180278 Cf. A001221, A002144, A002522, A128428, A164511, A185952, A219017, A219108, A257366. %K A180278 nonn,hard,more %O A180278 0,3 %A A180278 _Michel Lagneau_, Jan 17 2011 %E A180278 a(9), a(10) and example corrected; a(11) added by _Donovan Johnson_, Aug 27 2012 %E A180278 a(12) from _Giovanni Resta_, May 10 2017 %E A180278 a(13)-a(17) from _Daniel Suteu_, Feb 20 2023 %E A180278 Name clarified and incorrect programs removed by _Pontus von Brömssen_, Sep 12 2023 %E A180278 a(18) from _Max Alekseyev_, Feb 24 2024