login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A102845
Number of prime factors of the sum of the first n odd primes.
1
1, 3, 2, 2, 2, 4, 3, 3, 1, 2, 3, 3, 3, 2, 1, 3, 1, 2, 3, 3, 2, 4, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 4, 3, 3, 2, 4, 7, 2, 8, 3, 5, 2, 4, 4, 3, 2, 3, 4, 4, 2, 4, 1, 9, 1, 4, 3, 6, 2, 6, 1, 6, 2, 5, 1, 4, 2, 5, 3, 3, 1, 4, 3, 5, 1, 6, 2, 3, 2, 4, 3, 4, 3, 2, 2, 5, 2, 7, 2, 4, 2, 8, 3, 4, 1, 2, 4, 4, 2, 5, 4, 2, 4, 2, 2
OFFSET
1,2
COMMENTS
Prime factors counted with multiplicity. - Harvey P. Dale, Sep 13 2016
LINKS
EXAMPLE
a(2)=3 because 3+5=8=2*2*2;
a(3)=2 because 3+5+7=15=3*5.
MATHEMATICA
PrimeOmega[Accumulate[Prime[Range[2, 110]]]] (* Harvey P. Dale, Sep 13 2016 *)
PROG
(PARI) for(n=1, 105, print1(bigomega(sum(k=1, n, prime(k+1))), ", ")) (Shepherd)
CROSSREFS
Sequence in context: A104890 A064123 A024703 * A064126 A175333 A130845
KEYWORD
easy,nonn
AUTHOR
Giovanni Teofilatto, Feb 28 2005
EXTENSIONS
More terms from Rick L. Shepherd, May 18 2005
STATUS
approved