login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A070916 a(1)=1, a(n) is the smallest integer >= a(n-1) such that a(n)*a(n-1) - 1 is prime. 2
1, 3, 4, 5, 6, 7, 12, 14, 16, 17, 22, 26, 27, 30, 31, 32, 34, 36, 38, 39, 40, 44, 45, 46, 47, 60, 61, 72, 75, 78, 81, 84, 87, 90, 93, 94, 95, 102, 104, 115, 116, 118, 120, 121, 132, 142, 146, 154, 155, 156, 164, 165, 182, 184, 185, 190, 192, 202, 206, 207, 216, 218 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Conjecture: lim_{n -> infinity} a(n)/(n*log(n)) = C = 1.075... .
MATHEMATICA
si[n_]:=Module[{k=n}, While[!PrimeQ[k*n-1], k++]; k]; NestList[si, 1, 70] (* Harvey P. Dale, Jul 25 2013 *)
PROG
(PARI) s=1; for(n=1, 100, t=s; while(isprime(s*t-1)==0, s++); print1(s, ", "))
CROSSREFS
Sequence in context: A052002 A247636 A361267 * A078305 A235324 A330373
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 20 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:47 EDT 2024. Contains 371967 sequences. (Running on oeis4.)