OFFSET
1,1
COMMENTS
Elements in this sequence can themselves be 5-almost primes. a(1) = 32 = 2^5. a(2) = 80 = 2^4 * 5. a(27) = 6102 = 2 * 3^3 * 113 a(28) = 6510 = 2 * 3 * 5 * 7 * 31 a(31) = 7820 = 2^2 * 5 * 17 * 23 a(33) = 8740 = 2^2 * 5 * 19 * 23. Does this happen infinitely often? - Jonathan Vos Post, Dec 11 2004
EXAMPLE
a(2)=80 because sum of first two 5-almost primes, i.e. 32+48, is 80.
MATHEMATICA
Accumulate[Select[Range[1000], PrimeOmega[#]==5&]] (* Harvey P. Dale, Jan 19 2018 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Shyam Sunder Gupta, Aug 24 2003
STATUS
approved