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

A141233
Sequence of k such that starting with P(0)=7 then k(n)*P(n-1)*(k(n)*P(n-1)-1)-1 is the least prime = P(n).
7
1, 4, 1, 19, 16, 56, 80, 383, 235
OFFSET
1,2
EXAMPLE
1*7*7-1*7-1=41 prime so k(1)=1 P(1)=41;
1*41*(1*41-1)-1=1639 composite,
2*41*(2*41-1)-1=6641 composite,
3*41*(3*41-1)-1=15005 composite,
4*41*(4*41-1)-1=26731 prime so k(2)=4 P(2)=26731;
1*26731*(1*26731-1)-1=714519629 prime so k(3)=1 P(3)=714519629.
PROG
(PARI) P=7; for(i=1, 20, k=0; while(!ispseudoprime(t=k++*P*(k*P-1)-1), ); P=t; print1(k", ")) \\ Michel Marcus, Sep 16 2019 ; after A141240
KEYWORD
nonn,more
AUTHOR
Pierre CAMI, Jun 16 2008
STATUS
approved