A241573 2^p + 3 where p is prime.
7, 11, 35, 131, 2051, 8195, 131075, 524291, 8388611, 536870915, 2147483651, 137438953475, 2199023255555, 8796093022211, 140737488355331, 9007199254740995, 576460752303423491, 2305843009213693955, 147573952589676412931, 2361183241434822606851
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..200
Crossrefs
Programs
-
Magma
[2^p+3: p in PrimesUpTo(100)];
-
Mathematica
Table[2^Prime[n] + 3, {n, 20}]
-
Sage
[2^p+3 for p in primes(100)] # Bruno Berselli, Apr 29 2014