login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A268641 Squarefree numbers k such that k^2 + 1 and k^2 - 1 are also squarefree. 2

%I #9 Sep 08 2022 08:46:15

%S 2,6,14,22,30,34,42,58,66,78,86,94,102,106,110,114,130,138,142,158,

%T 166,178,186,194,202,210,214,222,230,238,254,258,266,286,302,310,322,

%U 330,346,354,358,366,390,394,398,402,410,430,434,438,446,454,462,466,470,498

%N Squarefree numbers k such that k^2 + 1 and k^2 - 1 are also squarefree.

%C All the listed terms are even squarefree numbers.

%C Subsequence of A039956.

%H Amiram Eldar, <a href="/A268641/b268641.txt">Table of n, a(n) for n = 1..10000</a>

%e a(2) = 6 = 2 * 3: 6^2 + 1 = 37 = 1 * 37; 6^2 - 1 = 35 = 5 * 7; 6, 37, 35 are all squarefree.

%p select(n -> andmap(issqrfree, [n, n^2+1, n^2-1]), [seq(n, n=2.. 10^3)]);

%t Select[Range[1000], SquareFreeQ[#] && SquareFreeQ[#^2 + 1] && SquareFreeQ[#^2 - 1] &]

%o (PARI) for(n=2, 1000, issquarefree(n) & issquarefree(n^2 + 1) & issquarefree(n^2 - 1) & print1(n,", "))

%o (Magma) [n : n in [1..1000] | IsSquarefree(n) and IsSquarefree(n^2+1) and IsSquarefree(n^2-1) ];

%Y Cf. A005117, A007675, A039956, A049532, A049533, A069987, A173186.

%K nonn

%O 1,1

%A _K. D. Bajpai_, Feb 09 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)