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”).

A081618
Numbers n such that (product of first n primes)+1 is divisible by the (n+1)-th prime. Also n such that A075306(n)-1 is equal to A002110(n). Positions of 1 in A081617.
4
1, 7, 232, 430
OFFSET
1,2
COMMENTS
a(5) is greater than 10^7. - Matty Muir, Oct 01 2020
EXAMPLE
The 8th prime, 19, divides 2*3*5*7*11*13*17+1=510511, thus 7 is a member.
MATHEMATICA
With[{nn=500}, Flatten[Position[Thread[{Rest[FoldList[Times, 1, Prime[ Range[ nn]]]]+ 1, Prime[ Range[2, nn+1]]}], _?(Divisible[#[[1]], #[[2]]]&), {1}, Heads->False]]] (* Harvey P. Dale, Apr 18 2015 *)
PROG
(PARI) p=1; for(n=1, 10^5, p=p*prime(n); if((p+1)%prime(n+1)==0, print1(n", ")))
CROSSREFS
Cf. A066735.
Sequence in context: A343128 A142116 A201955 * A285369 A287042 A160491
KEYWORD
nonn,hard,more
AUTHOR
Ralf Stephan, Mar 24 2003
STATUS
approved