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!)
A333721 Numbers k such that k + 1, 2k + 1, 3k + 1, 4k + 1, and 6k + 1 are all prime. 1
1530, 4260, 25410, 26040, 78540, 111720, 174990, 211050, 214830, 395430, 403260, 409290, 459690, 487830, 512820, 711120, 779790, 910560, 1023750, 1135950, 1280370, 1312350, 1451520, 1464810, 1487070, 1563510, 1623360, 1698060, 1824330, 1933680, 2006340, 2097480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms are multiples of 6.
All terms are multiples of 30. - Robert Israel, Jun 17 2020
LINKS
EXAMPLE
25410 is in the sequence because 25411, 50821, 76231, 101641, 152461 are all prime.
MAPLE
select(t -> andmap(isprime, [t+1, 2*t+1, 3*t+1, 4*t+1, 6*t+1]), [seq(i, i=30..3*10^6, 30)]); # Robert Israel, Jun 17 2020
PROG
(PARI)
isok(m)={for(i=1, 6, if(i<>5&&!isprime(i*m+1), return(0))); 1}
{ forstep(n=0, 3*10^6, 6, if(isok(n), print1(n, ", "))) } \\ Andrew Howroyd, May 04 2020
CROSSREFS
Sequence in context: A226701 A235170 A252414 * A030061 A122707 A347200
KEYWORD
nonn
AUTHOR
Pedro Caceres, May 04 2020
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 July 5 21:43 EDT 2024. Contains 374029 sequences. (Running on oeis4.)