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”).

A373600
a(n) is the sum of prime factors (with multiplicity) in A276086(n), where A276086 is the primorial base exp-function.
3
0, 2, 3, 5, 6, 8, 5, 7, 8, 10, 11, 13, 10, 12, 13, 15, 16, 18, 15, 17, 18, 20, 21, 23, 20, 22, 23, 25, 26, 28, 7, 9, 10, 12, 13, 15, 12, 14, 15, 17, 18, 20, 17, 19, 20, 22, 23, 25, 22, 24, 25, 27, 28, 30, 27, 29, 30, 32, 33, 35, 14, 16, 17, 19, 20, 22, 19, 21, 22, 24, 25, 27, 24, 26, 27, 29, 30, 32, 29, 31, 32, 34
OFFSET
0,2
FORMULA
a(n) = A001414(A276086(n)).
PROG
(PARI) A373600(n) = { my(p=2, s=0); while(n, s += (n%p)*p; n = n\p; p = nextprime(1+p)); (s); };
CROSSREFS
Cf. A001414, A276086, A373601, A373602 (k such that a(k) is a multiple of 3).
Sequence in context: A067183 A269670 A333480 * A377738 A036587 A075145
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 18 2024
STATUS
approved