A117881 First semiprime after Pi^n.
4, 4, 10, 33, 106, 309, 965, 3022, 9489, 29813, 93649, 294209, 924271, 2903678, 9122173, 28658147, 90032221, 282844574, 888582413, 2791563955, 8769956797, 27551631845, 86556004193, 271923706897, 854273519921, 2683779414319
Offset: 0
Examples
a(3) = 33 because Pi^3 = 31.0062766... floor(Pi^3) = 31 is prime hence 31 + 2 = 33 is a term.
Links
- Eric Weisstein's World of Mathematics, e-Prime.
Crossrefs
Programs
-
Mathematica
fsp[n_]:=Module[{k=Ceiling[Pi^n]},While[PrimeOmega[k]!=2,k++];k]; Array[fsp,30,0]
Formula
a(n) = min{s in A001358 and s > Pi^n}.
Comments