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!)
A124569 Numbers n such that n, n+2, n+4 and n+6 are squarefree. 2
1, 11, 13, 15, 17, 29, 31, 33, 35, 37, 51, 53, 55, 65, 67, 83, 85, 87, 89, 91, 101, 103, 105, 107, 109, 127, 137, 139, 155, 157, 159, 161, 177, 179, 181, 191, 193, 195, 197, 199, 209, 211, 213, 215, 217, 227, 229, 231, 233, 235, 247, 249, 251, 253, 263, 265, 267 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,2

COMMENTS

Numbers n, n+2, n+4 and n+6 are four successive odd squarefree numbers.

LINKS

Robert Israel, Table of n, a(n) for n = 1..10000

MAPLE

filter:= proc(n) andmap(numtheory:-issqrfree, [n, n+2, n+4, n+6]) end proc:

select(filter, [seq(i, i=1..1000, 2)]); # Robert Israel, Jun 08 2021

PROG

(PARI) isok(n) = issquarefree(n) && issquarefree(n+2) && issquarefree(n+4) && issquarefree(n+6); \\ Michel Marcus, Oct 11 2013

CROSSREFS

Cf. A007675, A024556.

Sequence in context: A152200 A277694 A179084 * A260826 A289699 A049722

Adjacent sequences: A124566 A124567 A124568 * A124570 A124571 A124572

KEYWORD

nonn

AUTHOR

Zak Seidov, Dec 27 2006

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 March 23 16:45 EDT 2023. Contains 361447 sequences. (Running on oeis4.)