A208455 Primes p such that (p+k)/(k+1) is a prime number for k=1,...,5.
5516281, 16831081, 18164161, 29743561, 51755761, 148057561, 153742681, 158918761, 175472641, 189614881, 212808961, 297279361, 298965241, 322030801, 467313841, 527428441, 661686481, 668745001, 751524481, 808214401
Offset: 1
Keywords
Links
- M. F. Hasler, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Range[1,810*10^6,2520],PrimeQ[#]&&AllTrue[Table[(#+k)/(k+1),{k,5}],PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jul 21 2015 *)
-
PARI
{my(p=1); until(,isprime(p+=2520) || next; for(j=2, 6, isprime(p\j+1)||next(2)); print1(p","))}
-
PARI
is_A208455(p,c=6)={ isprime(p) || return; for(j=2, c, isprime(p\j+1) || return); 1 }
Extensions
Value of A208455(1000) = 147435621481 = 58506199*2520+1 confirmed by Zak Seidov.
Comments