|
| |
|
|
A071580
|
|
Smallest prime == 1 mod (a(n-1)*a(n-2)*...*a(1)) for n>=2 with a(1)=2.
|
|
0
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| a(6) through a(13), with digit lengths 8, 16, 32, 63, 127, 253, 507 and 1012, respectively, have been certified prime with Primo.
|
|
|
PROG
| (PARI) terms=13; v=vector(terms); p=2; v[1]=p; for(n=2, terms, q=p+1; while(!isprime(q), q=q+p); v[n]=q; p=p*q); v
|
|
|
CROSSREFS
| Cf. A061092.
Sequence in context: A000058 A075442 A082993 * A014546 A068393 A032053
Adjacent sequences: A071577 A071578 A071579 * A071581 A071582 A071583
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Rick L. Shepherd (rshepherd2(AT)hotmail.com), May 31 2002
|
| |
|
|