A110208 1 + sum of first n semiprimes.
1, 5, 11, 20, 30, 44, 59, 80, 102, 127, 153, 186, 220, 255, 293, 332, 378, 427, 478, 533, 590, 648, 710, 775, 844, 918, 995, 1077, 1162, 1248, 1335, 1426, 1519, 1613, 1708, 1814, 1925, 2040, 2158, 2277, 2398, 2520, 2643, 2772, 2905, 3039, 3180, 3322, 3465
Offset: 0
Programs
-
Mathematica
Accumulate[Join[{1},Select[Range[200],PrimeOmega[#]==2&]]] (* Harvey P. Dale, Apr 29 2018 *)
Formula
a(0) = 1; for n>0, a(n) = 1 + A062198(n).
Comments