The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A254069 a(n) = smallest k such that none of 4*k - 4*j + 2 and 4*k + 4*j - 2, j = 0, 1, 2, .. n, are squarefree. 0
13, 13, 1263, 837140 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(4) > 10^8.
LINKS
EXAMPLE
a(0) = 13 because none of 4*13 - 4*0 + 2 = 54, 4*13 + 4*0 - 2 = 50 are squarefree,
a(1) = 13 because none of 4*13 - 4*1 + 2 = 50, 4*13 + 4*1 - 2 = 54 are squarefree,
a(2) = 1263 because none of 4*1263 - 4*2 + 2 = 5046, 4*1263 - 4*1 + 2 = 5050, 4*1263 + 4*1 - 2 = 5054, 4*1263 + 4*2 - 2 = 5058 are squarefree.
MATHEMATICA
{1}~Join~Table[k = 0; While[! And[NoneTrue[4 k + 2 # & /@ Range@ n, SquareFreeQ], NoneTrue[4 k - 2 # & /@ Range@ n, SquareFreeQ]], k++]; k, {n, 6}] (* Michael De Vlieger, May 09 2015, Version 10 *)
PROG
(PARI) ok(n, k)=for(j=1, n, if(issquarefree(4*k-4*j+2) || issquarefree(4*k+4*j-2), return(0))); 1
a(n)=my(k); while(!ok(n, k++), ); k \\ Charles R Greathouse IV, May 22 2015
CROSSREFS
Cf. A257115.
Sequence in context: A020553 A094461 A186070 * A309990 A196461 A371764
KEYWORD
nonn,more
AUTHOR
STATUS
approved

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 June 10 19:30 EDT 2024. Contains 373280 sequences. (Running on oeis4.)