A117879 First semiprime after e^n.
4, 4, 9, 21, 55, 155, 407, 1099, 2981, 8105, 22033, 59881, 162757, 442417, 1202611, 3269021, 8886117, 24154953, 65659981, 178482301, 485165203, 1318815739, 3584912849, 9744803447, 26489122131, 72004899341, 195729609431
Offset: 0
Links
- Harvey P. Dale, Table of n, a(n) for n = 0..100
- Eric Weisstein's World of Mathematics, e-Prime.
Crossrefs
Programs
-
Mathematica
fsa[n_]:=Module[{i=1,c=Floor[E^n]},While[PrimeOmega[c+i]!=2,i++];c+i]; Array[fsa,30,0] (* Harvey P. Dale, Oct 18 2013 *)
Comments