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 A353887 #23 Jan 10 2025 12:38:02 %S A353887 1,3,7,13,21,31,43,57,73,91,111,133,157,183,211,241,273,307,381,421, %T A353887 463,553,601,651,703,757,813,871,993,1057,1123,1191,1261,1333,1407, %U A353887 1483,1561,1641,1723,1807,1893,1981,2071,2163,2257,2353,2451,2551,2653,2757 %N A353887 Squarefree numbers of the form k^2 + k + 1 for some k >= 0. %C A353887 Dimitrov proved that this sequence is infinite. %C A353887 Intersection of A002061 and A005117. %H A353887 Amiram Eldar, <a href="/A353887/b353887.txt">Table of n, a(n) for n = 1..10000</a> %H A353887 Wawrzyniec Bieniawski, Piotr Masierak, Andrzej Tomski, and Szymon Łukaszyk, <a href="https://www.preprints.org/manuscript/202409.1581">Assembly Theory - Formalizing Assembly Spaces and Discovering Patterns and Bounds</a>, Preprints.org (2025). %H A353887 Stoyan Ivanov Dimitrov, <a href="https://doi.org/10.1515/gmj-2023-2010">Square-free values of n^2+n+1</a>, Georgian Mathematical Journal, Vol. 30, No. 3 (2023), pp. 333-348; <a href="https://arxiv.org/abs/2205.02488">arXiv preprint</a>, arXiv:2205.02488 [math.NT], 2022-2023. %F A353887 a(n) = A002061(1 + A353886(n)). %e A353887 4^2 + 4 + 1 = 21 = 3 * 7 is squarefree, so 21 belongs to this sequence. %t A353887 Select[Table[n^2 + n + 1, {n, 0, 52}], SquareFreeQ] (* _Amiram Eldar_, Dec 11 2023 *) %o A353887 (PARI) for (k=0, 52, if (issquarefree(m=k^2+k+1), print1 (m", "))) %Y A353887 Cf. A002061, A005117, A353886 (corresponding k's). %K A353887 nonn,easy %O A353887 1,2 %A A353887 _Rémy Sigrist_, May 09 2022