OFFSET
1,1
COMMENTS
Beginning with 3, smallest prime p = a(n) such that p + k is divisible by k + 1 for each k = 1, 2, ..., n. For example: 61 --> 62, 63, 64, 65 and 66 are divisible respectively by 2, 3, 4, 5 and 6. - Robin Garcia, Jul 23 2012
LINKS
R. J. Mathar, Table of n, a(n) for n = 1..200
MAPLE
A070858 := proc(n)
local l, p;
l := ilcm(seq(i, i=1..n)) ;
for p from 1 by l do
if isprime(p) then
return p;
end if;
end do:
end proc; # R. J. Mathar, Jun 25 2013
PROG
(PARI) a(n)=my(L=lcm(vector(n, i, i)), k=1); while(!ispseudoprime(k+=L), ); k \\ Charles R Greathouse IV, Jun 25 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, May 16 2002
EXTENSIONS
More terms from Sascha Kurz, Feb 02 2003
STATUS
approved