A225583 Primes in the chain of repeated application of x->2*x+3, starting at x=19.
19, 41, 173, 349, 701, 11261, 45053, 180221, 184549373, 738197501, 5905580029, 188978561021, 6192449487634429, 49539595901075453, 99079191802150909, 25364273101350633469, 811656739243220271101, 3486039150627630854115933814781
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..37
Crossrefs
Programs
-
Magma
x:=19; a:=[n eq 1 select x else 2*Self(n-1)+3: n in [1..200]]; [a[i]: i in [1..#a] | IsPrime(a[i])];
-
Magma
[a: n in [0..150] | IsPrime(a) where a is 11*2^n-3];
-
Mathematica
Select[NestList[2 # + 3 &, 19, 30], PrimeQ] (* or *) Select[Table[11 2^n - 3, {n, 0, 150}], PrimeQ]
Comments