A086062 Sum of first n 3-almost primes.
8, 20, 38, 58, 85, 113, 143, 185, 229, 274, 324, 376, 439, 505, 573, 643, 718, 794, 872, 964, 1062, 1161, 1263, 1368, 1478, 1592, 1708, 1825, 1949, 2074, 2204, 2342, 2489, 2637, 2790, 2944, 3108, 3273, 3443, 3614, 3786, 3960, 4135, 4317, 4503, 4691, 4881
Offset: 1
Examples
a(2)=20 because sum of first two 3-almost primes i.e. 8+12 is 20.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Accumulate[Select[Range[500],PrimeOmega[#]==3&]] (* Harvey P. Dale, Jan 17 2014 *)
Formula
a(n) = sum_{i=1..n} A014612(i). - R. J. Mathar, Sep 14 2012
Comments