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!)
A065545 a(n) is smallest prime > 2*a(n-1), a(1) = 3. 4
3, 7, 17, 37, 79, 163, 331, 673, 1361, 2729, 5471, 10949, 21911, 43853, 87719, 175447, 350899, 701819, 1403641, 2807303, 5614657, 11229331, 22458671, 44917381, 89834777, 179669557, 359339171, 718678369, 1437356741, 2874713497 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
There is no common term with A055496? - Zak Seidov, Feb 04 2016
Correct, there is no common term with A055496. - Flávio V. Fernandes, Apr 10 2021
LINKS
MATHEMATICA
NextPrim[n_Integer] := Block[ {k = n + 1}, While[ !PrimeQ[k], k++ ]; Return[k]]; a[1] = 3; a[n_] := NextPrim[ 2*a[n - 1]]; Table[ a[n], {n, 1, 20} ]
NestList[NextPrime[2*#] &, 3, 29] (* Zak Seidov, Feb 04 2016 *)
PROG
(PARI) lista(nn) = {print1(a = 3, ", "); for (n=1, nn, a = nextprime(2*a+1); print1(a, ", "); ); } \\ Michel Marcus, Feb 04 2016
CROSSREFS
Cf. A055496.
Sequence in context: A089099 A089116 A244629 * A110930 A026646 A026668
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Nov 28 2001
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 02:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)