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.

A358428 Numbers k such that k^2 + 1, k^2 + 2 and k^2 + 3 are all squarefree.

This page as a plain text file.
%I A358428 #11 Dec 11 2022 19:24:21
%S A358428 2,6,8,10,16,20,26,28,30,34,36,42,44,46,48,52,54,56,60,62,64,66,72,74,
%T A358428 78,80,84,88,90,92,96,98,100,106,108,114,116,120,126,128,134,136,138,
%U A358428 142,144,146,150,152,154,156,160,162,164,170,172,174,178,180,186,188,190,192,196,198,200
%N A358428 Numbers k such that k^2 + 1, k^2 + 2 and k^2 + 3 are all squarefree.
%C A358428 Wongcharoenbhorn proves that this sequence is infinite and gives an infinite product for its density; its value is about 0.313992945491, so a(n) ~ kn with k around 3.18478492705. - _Charles R Greathouse IV_, Dec 11 2022
%H A358428 W. Wongcharoenbhorn, <a href="https://arxiv.org/abs/2211.07237">Three consecutive near-square squarefree numbers</a>, arXiv:2211.07237 [math.NT], 2022.
%t A358428 Select[Range[200], And @@ SquareFreeQ /@ (#^2 + {1, 2, 3}) &] (* _Amiram Eldar_, Nov 15 2022 *)
%o A358428 (PARI) isok(k) = issquarefree(k^2+1) && issquarefree(k^2+2) && issquarefree(k^2+3);
%Y A358428 Subsequence of A335962.
%K A358428 nonn
%O A358428 1,1
%A A358428 _Michel Marcus_, Nov 15 2022