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!)
A063502 a(n+1) = p, where p is the a(n)-th twin prime (p,p+2), with a(0) = 1. 1
1, 3, 11, 137, 5639, 641129, 152921807, 65818751039, 46091763604421 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Instead of starting with a(0) = 1 for the first twin prime (3,5) other sequences can be formed for a(0) = 2, i.e. 2nd twin prime: 2, 5, 29, 641, 44381, 7212059, etc., a(0) = 4: 4, 17, 239, 12161, 1583927, etc., a(0) = 6: 6, 41, 1151, 93251, 16989317, etc., a(0) = 7: 7, 59 1931,176021, 35263691, etc., a(0) = 8: 8, 71, 2339,221201, 45749309 and so on.
LINKS
Tomás Oliveira e Silva, Tables of values of pi(x) and of pi2(x) [From M. F. Hasler, Mar 02 2009]
FORMULA
a(n+1) = A001359(a(n)); a(0)=1. [M. F. Hasler, Mar 02 2009]
EXAMPLE
a(3) = 137 because a(2) = 11 and the 11th twin prime is (137,139).
MATHEMATICA
(* Computes up to a(6) only *) tp[n_] := (* = A001359 *) tp[n] = (p = NextPrime[tp[n-1]]; While[ !PrimeQ[p+2], p = NextPrime[p]]; p); tp[1] = 3; Do[tp[n], {n, 2, 10^6}]; a[n_] := a[n] = tp[a[n-1]]; a[0]=1; Table[ Print[ a[n]]; a[n], {n, 0, 6}] (* Jean-François Alcover, Dec 13 2011 *)
CROSSREFS
Cf. A007097.
Sequence in context: A057205 A121897 A067657 * A329626 A072639 A201000
KEYWORD
hard,more,nice,nonn
AUTHOR
Lubomir Alexandrov, Jul 30 2001
EXTENSIONS
Edited by Frank Ellermann, Jan 25 2002
Offset and example corrected by Farideh Firoozbakht, Dec 07 2008
a(7) = 65818751039 from Zak Seidov and Farideh Firoozbakht, Dec 13 2008
Computed a(8)=46091763604421 using data from T. Oliveira e Silva. - M. F. Hasler, Mar 02 2009
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 March 29 04:59 EDT 2024. Contains 371264 sequences. (Running on oeis4.)