OFFSET
1,1
COMMENTS
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
LINKS
W. Wongcharoenbhorn, Three consecutive near-square squarefree numbers, arXiv:2211.07237 [math.NT], 2022.
MATHEMATICA
Select[Range[200], And @@ SquareFreeQ /@ (#^2 + {1, 2, 3}) &] (* Amiram Eldar, Nov 15 2022 *)
PROG
(PARI) isok(k) = issquarefree(k^2+1) && issquarefree(k^2+2) && issquarefree(k^2+3);
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Nov 15 2022
STATUS
approved