login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A049536
Primes of the form lcm(1, ..., n) + 1 = A003418(n) + 1.
13
2, 3, 7, 13, 61, 421, 2521, 232792561, 26771144401, 72201776446801, 442720643463713815201, 718766754945489455304472257065075294401, 6676878045498705789701874602220118271269436344024536001
OFFSET
1,1
LINKS
EXAMPLE
Lcm(9) + 1 = lcm(10) + 1 = 2521, a prime.
MATHEMATICA
Select[Table[LCM@@Range[n]+1, {n, 150}], PrimeQ]//Union (* Harvey P. Dale, May 31 2017 *)
PROG
(PARI) N=1; print1(2); for(n=1, 1e3, if(isprimepower(n, &p), N*=p; if(isprime(N+1), print1(", "N+1)))) \\ Charles R Greathouse IV, Nov 18 2015
CROSSREFS
Subsequence of A070858.
Sequence in context: A051454 A051452 A058017 * A065508 A078154 A192611
KEYWORD
nonn
AUTHOR
STATUS
approved