A078502 a(n) = smallest positive integer N such that (N - k)/k is prime for k = 1, 2, ..., n.
3, 6, 12, 12, 174600, 7224840, 10780560, 10780560, 1086338816640, 50060257410240, 7720634052774720, 227457297898150320, 7272877497848202240, 7272877497848202240
Offset: 1
Examples
(12-k)/k is prime for k = 1,2,3,4 and 12 is the smallest positive integer satisfying this property. Hence a(4) = 12.
Links
- Carlos Rivera, Puzzle 206. (N-k)/k Primes, Prime Puzzles and Problems Connection.
- Carlos Rivera, Puzzle 977. A special set of primes, Prime Puzzles and Problems Connection.
- G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 7272877497848202240
Programs
-
PARI
a(n)=k=1; while(k,c=0; for(i=1,n,if(k%i==0&&isprime(k/i-1),c++)); if(c==n,return(k));k++) n=1;while(n<10,print1(a(n),", ");n++) \\ Derek Orr, Sep 15 2014
Formula
a(n) == 0 (mod A003418(n)) because of the divisibility condition (A003418(n) = lcm(1,2,...,n)). - Jean-Christophe Hervé, Sep 15 2014
Extensions
Corrected and extended by Jens Kruse Andersen, Jan 10 2003
Comments